new_patch         496 dev/microcode/aic7xxx/aicasm.c 	patch_t *new_patch;
new_patch         504 dev/microcode/aic7xxx/aicasm.c 	new_patch = (patch_t *)malloc(sizeof(*new_patch));
new_patch         506 dev/microcode/aic7xxx/aicasm.c 	if (new_patch == NULL)
new_patch         509 dev/microcode/aic7xxx/aicasm.c 	memset(new_patch, 0, sizeof(*new_patch));
new_patch         512 dev/microcode/aic7xxx/aicasm.c 		new_patch->patch_func = scope->func_num;
new_patch         513 dev/microcode/aic7xxx/aicasm.c 		new_patch->begin = scope->begin_addr;
new_patch         515 dev/microcode/aic7xxx/aicasm.c 		new_patch->patch_func = 0;
new_patch         516 dev/microcode/aic7xxx/aicasm.c 		new_patch->begin = scope->end_addr;
new_patch         518 dev/microcode/aic7xxx/aicasm.c 	new_patch->skip_instr = pinfo->skip_instr;
new_patch         519 dev/microcode/aic7xxx/aicasm.c 	new_patch->skip_patch = pinfo->skip_patch;
new_patch         520 dev/microcode/aic7xxx/aicasm.c 	TAILQ_INSERT_TAIL(&patches, new_patch, links);