diff options
author | gibbs <gibbs@FreeBSD.org> | 1996-01-03 06:28:01 +0000 |
---|---|---|
committer | gibbs <gibbs@FreeBSD.org> | 1996-01-03 06:28:01 +0000 |
commit | 4247656160af12b6dde20022c353d76adf1755af (patch) | |
tree | afaee7fc989e24cf60c46f9c8f27fcd9df10dd73 /sys/dev | |
parent | e71086b4dcc9d54963bfb5e449d27d42d7bf8bbb (diff) | |
download | FreeBSD-src-4247656160af12b6dde20022c353d76adf1755af.zip FreeBSD-src-4247656160af12b6dde20022c353d76adf1755af.tar.gz |
The long awaited stability patch set for the aic7xxx driver:
aic7770.c:
Simplify the initialization of adapters by pulling all card specific
initialization to the card specific modules.
eisaconf.c:
outb 0x80 instead of 0xc80. The top byte is truncated anyway, and 0x80
was what was intended.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/eisa/eisaconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/eisa/eisaconf.c b/sys/dev/eisa/eisaconf.c index b50186c..288c66b 100644 --- a/sys/dev/eisa/eisaconf.c +++ b/sys/dev/eisa/eisaconf.c @@ -18,7 +18,7 @@ * 4. Modifications may be freely made to this file if the above conditions * are met. * - * $Id: eisaconf.c,v 1.10 1995/11/29 17:40:47 bde Exp $ + * $Id: eisaconf.c,v 1.11 1995/12/10 13:33:49 phk Exp $ */ #include <sys/param.h> #include <sys/systm.h> @@ -97,7 +97,7 @@ eisa_configure() int id_size = sizeof(eisa_id); eisa_id = 0; for( i = 0; i < id_size; i++ ) { - outb(eisaBase,0xc80 + i); /*Some cards require priming*/ + outb(eisaBase,0x80 + i); /*Some cards require priming*/ eisa_id |= inb(eisaBase+i) << ((id_size-i-1)*CHAR_BIT); } if (eisa_id & 0x80000000) |