Searched refs:cur_patch (Results 1 – 3 of 3) sorted by relevance
/Linux-v5.4/drivers/scsi/aic7xxx/aicasm/ |
D | aicasm.c | 352 patch_t *cur_patch; in output_code() local 425 for (cur_patch = STAILQ_FIRST(&patches); in output_code() 426 cur_patch != NULL; in output_code() 427 cur_patch = STAILQ_NEXT(cur_patch,links)) { in output_code() 429 cur_patch == STAILQ_FIRST(&patches) ? "" : ",\n", in output_code() 431 cur_patch->patch_func, cur_patch->begin, in output_code() 432 cur_patch->skip_instr, cur_patch->skip_patch); in output_code() 524 patch_t *cur_patch; in output_listing() local 596 cur_patch = STAILQ_FIRST(&patches); in output_listing() 601 if (check_patch(&cur_patch, instrcount, in output_listing() [all …]
|
/Linux-v5.4/drivers/scsi/aic7xxx/ |
D | aic7xxx_core.c | 6821 const struct patch *cur_patch; in ahc_loadseq() local 6853 cur_patch = patches; in ahc_loadseq() 6861 if (ahc_check_patch(ahc, &cur_patch, i, &skip_addr) == 0) { in ahc_loadseq() 6929 const struct patch *cur_patch; in ahc_check_patch() local 6935 cur_patch = *start_patch; in ahc_check_patch() 6937 while (cur_patch < last_patch && start_instr == cur_patch->begin) { in ahc_check_patch() 6939 if (cur_patch->patch_func(ahc) == 0) { in ahc_check_patch() 6942 *skip_addr = start_instr + cur_patch->skip_instr; in ahc_check_patch() 6943 cur_patch += cur_patch->skip_patch; in ahc_check_patch() 6949 cur_patch++; in ahc_check_patch() [all …]
|
D | aic79xx_core.c | 9305 const struct patch *cur_patch; in ahd_loadseq() local 9402 cur_patch = patches; in ahd_loadseq() 9409 if (ahd_check_patch(ahd, &cur_patch, i, &skip_addr) == 0) { in ahd_loadseq() 9463 const struct patch *cur_patch; in ahd_check_patch() local 9469 cur_patch = *start_patch; in ahd_check_patch() 9471 while (cur_patch < last_patch && start_instr == cur_patch->begin) { in ahd_check_patch() 9473 if (cur_patch->patch_func(ahd) == 0) { in ahd_check_patch() 9476 *skip_addr = start_instr + cur_patch->skip_instr; in ahd_check_patch() 9477 cur_patch += cur_patch->skip_patch; in ahd_check_patch() 9483 cur_patch++; in ahd_check_patch() [all …]
|