Home
last modified time | relevance | path

Searched refs:cur_patch (Results 1 – 4 of 4) sorted by relevance

/drivers/scsi/aic7xxx/aicasm/
Daicasm.c352 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()
525 patch_t *cur_patch; in output_listing() local
597 cur_patch = STAILQ_FIRST(&patches); in output_listing()
602 if (check_patch(&cur_patch, instrcount, in output_listing()
[all …]
/drivers/scsi/aic7xxx/
Daic7xxx_core.c6855 const struct patch *cur_patch; in ahc_loadseq() local
6887 cur_patch = patches; in ahc_loadseq()
6895 if (ahc_check_patch(ahc, &cur_patch, i, &skip_addr) == 0) { in ahc_loadseq()
6963 const struct patch *cur_patch; in ahc_check_patch() local
6969 cur_patch = *start_patch; in ahc_check_patch()
6971 while (cur_patch < last_patch && start_instr == cur_patch->begin) { in ahc_check_patch()
6973 if (cur_patch->patch_func(ahc) == 0) { in ahc_check_patch()
6976 *skip_addr = start_instr + cur_patch->skip_instr; in ahc_check_patch()
6977 cur_patch += cur_patch->skip_patch; in ahc_check_patch()
6983 cur_patch++; in ahc_check_patch()
[all …]
Daic79xx_core.c9357 const struct patch *cur_patch; in ahd_loadseq() local
9454 cur_patch = patches; in ahd_loadseq()
9461 if (ahd_check_patch(ahd, &cur_patch, i, &skip_addr) == 0) { in ahd_loadseq()
9515 const struct patch *cur_patch; in ahd_check_patch() local
9521 cur_patch = *start_patch; in ahd_check_patch()
9523 while (cur_patch < last_patch && start_instr == cur_patch->begin) { in ahd_check_patch()
9525 if (cur_patch->patch_func(ahd) == 0) { in ahd_check_patch()
9528 *skip_addr = start_instr + cur_patch->skip_instr; in ahd_check_patch()
9529 cur_patch += cur_patch->skip_patch; in ahd_check_patch()
9535 cur_patch++; in ahd_check_patch()
[all …]
/drivers/scsi/
Daic7xxx_old.c1561 struct sequencer_patch *cur_patch; in aic7xxx_check_patch() local
1567 cur_patch = *start_patch; in aic7xxx_check_patch()
1569 while ((cur_patch < last_patch) && (start_instr == cur_patch->begin)) in aic7xxx_check_patch()
1571 if (cur_patch->patch_func(p) == 0) in aic7xxx_check_patch()
1576 *skip_addr = start_instr + cur_patch->skip_instr; in aic7xxx_check_patch()
1577 cur_patch += cur_patch->skip_patch; in aic7xxx_check_patch()
1585 cur_patch++; in aic7xxx_check_patch()
1589 *start_patch = cur_patch; in aic7xxx_check_patch()
1635 struct sequencer_patch *cur_patch; in aic7xxx_download_instr() local
1644 cur_patch = sequencer_patches; in aic7xxx_download_instr()
[all …]