diff options
author | 2002-02-16 05:06:52 +0000 | |
---|---|---|
committer | 2002-02-16 05:06:52 +0000 | |
commit | ff9c26c33111e87f2e8f899afd794ea66934f140 (patch) | |
tree | 06b6b794980e47d56b3547cd1dd0e566359090be | |
parent | New port of FreeBSD's ahc driver (diff) | |
download | wireguard-openbsd-ff9c26c33111e87f2e8f899afd794ea66934f140.tar.xz wireguard-openbsd-ff9c26c33111e87f2e8f899afd794ea66934f140.zip |
change to reflect the removal of sequencer.h
-rw-r--r-- | sys/dev/microcode/aic7xxx/aicasm.c | 6 | ||||
-rw-r--r-- | sys/dev/microcode/aic7xxx/aicasm_gram.y | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/microcode/aic7xxx/aicasm.c b/sys/dev/microcode/aic7xxx/aicasm.c index befd0444523..b6923f20ef5 100644 --- a/sys/dev/microcode/aic7xxx/aicasm.c +++ b/sys/dev/microcode/aic7xxx/aicasm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: aicasm.c,v 1.2 2002/02/16 04:36:33 smurph Exp $ */ +/* $OpenBSD: aicasm.c,v 1.3 2002/02/16 05:06:52 smurph Exp $ */ /* * Aic7xxx SCSI host adapter firmware asssembler * @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: aicasm.c,v 1.2 2002/02/16 04:36:33 smurph Exp $ + * $Id: aicasm.c,v 1.3 2002/02/16 05:06:52 smurph Exp $ * * $FreeBSD: src/sys/dev/aic7xxx/aicasm/aicasm.c,v 1.32 2001/07/18 21:03:32 gibbs Exp $ */ @@ -45,7 +45,7 @@ #include "aicasm.h" #include "aicasm_symbol.h" -#include "sequencer.h" +#include "aicasm_insformat.h" typedef struct patch { TAILQ_ENTRY(patch) links; diff --git a/sys/dev/microcode/aic7xxx/aicasm_gram.y b/sys/dev/microcode/aic7xxx/aicasm_gram.y index c2889c5c2ba..776adab22a1 100644 --- a/sys/dev/microcode/aic7xxx/aicasm_gram.y +++ b/sys/dev/microcode/aic7xxx/aicasm_gram.y @@ -42,7 +42,7 @@ #include "aicasm.h" #include "aicasm_symbol.h" -#include "sequencer.h" +#include "aicasm_insformat.h" int yylineno; char *yyfilename; |