summaryrefslogtreecommitdiffstats
path: root/sys/amd64
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1994-09-13 17:06:47 +0000
committerphk <phk@FreeBSD.org>1994-09-13 17:06:47 +0000
commit5c8474cce9435eac76279329e20c64f103fa6abf (patch)
treef9d35076acae207cd79a329f542f5f030a556eb0 /sys/amd64
parent6294a526602447291dca25fa16f336f4dcca6e21 (diff)
downloadFreeBSD-src-5c8474cce9435eac76279329e20c64f103fa6abf.zip
FreeBSD-src-5c8474cce9435eac76279329e20c64f103fa6abf.tar.gz
Reversed my patch from yesterday. "eisa" if >= 0x1000.
pas0 will be in "eisa", even though it isn't.
Diffstat (limited to 'sys/amd64')
-rw-r--r--sys/amd64/isa/isa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/isa/isa.c b/sys/amd64/isa/isa.c
index 0b1eb4a..b9d6e05 100644
--- a/sys/amd64/isa/isa.c
+++ b/sys/amd64/isa/isa.c
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)isa.c 7.2 (Berkeley) 5/13/91
- * $Id: isa.c,v 1.22 1994/09/02 22:13:33 ats Exp $
+ * $Id: isa.c,v 1.23 1994/09/13 06:43:57 phk Exp $
*/
/*
@@ -374,7 +374,7 @@ config_isadev(isdp, mp)
if (isdp->id_iobase < 0x100) {
printf(" on motherboard\n");
} else {
- if ((isdp->id_iobase & 0xFFF) >= 0x400) {
+ if (isdp->id_iobase >= 0x1000) {
printf (" on eisa\n");
} else {
printf (" on isa\n");
OpenPOWER on IntegriCloud