Look for the sequencer code in the right place.

This commit is contained in:
mycroft 1996-08-10 08:45:17 +00:00
parent cdfce2d74f
commit ef186dd501
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: aic7xxx.c,v 1.9 1996/07/10 22:50:44 explorer Exp $ */
/* $NetBSD: aic7xxx.c,v 1.10 1996/08/10 08:45:17 mycroft Exp $ */
/*
* Generic driver for the aic7xxx based adaptec SCSI controllers
@ -2646,7 +2646,12 @@ static void ahc_loadseq(ahc)
struct ahc_data *ahc;
{
static u_char seqprog[] = {
#if defined(__FreeBSD__)
# include "aic7xxx_seq.h"
#endif
#if defined(__NetBSD__)
# include <dev/microcode/aic7xxx/aic7xxx_seq.h>
#endif
};
AHC_OUTB(ahc, SEQCTL, PERRORDIS|SEQRESET|LOADRAM);