diff options
author | kato <kato@FreeBSD.org> | 1998-05-04 07:33:32 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 1998-05-04 07:33:32 +0000 |
commit | 5b24859e0ee448a90609b336f29dc67e3de2536d (patch) | |
tree | 12252b6b6a96e3d5a7360ea68ad1527f8645bfaa /sys/pc98 | |
parent | 5b12149227a866bd135ba0a7a4562f7693e50f65 (diff) | |
download | FreeBSD-src-5b24859e0ee448a90609b336f29dc67e3de2536d.zip FreeBSD-src-5b24859e0ee448a90609b336f29dc67e3de2536d.tar.gz |
Use `0xf8' instead of `IO_NPX' macro to support compiling with `SMP'
option.
Diffstat (limited to 'sys/pc98')
-rw-r--r-- | sys/pc98/pc98/npx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/pc98/pc98/npx.c b/sys/pc98/pc98/npx.c index 272fba0..16a1958 100644 --- a/sys/pc98/pc98/npx.c +++ b/sys/pc98/pc98/npx.c @@ -32,7 +32,7 @@ * SUCH DAMAGE. * * from: @(#)npx.c 7.2 (Berkeley) 5/12/91 - * $Id: npx.c,v 1.35 1998/04/16 16:34:46 kato Exp $ + * $Id: npx.c,v 1.36 1998/04/20 13:50:21 kato Exp $ */ #include "npx.h" @@ -287,7 +287,7 @@ npxprobe1(dvp) * it after a warm boot. */ #ifdef PC98 - outb(IO_NPX,0); + outb(0xf8,0); #else outb(0xf1, 0); /* full reset on some systems, NOP on others */ outb(0xf0, 0); /* clear BUSY# latch */ @@ -558,7 +558,7 @@ npxintr(unit) } #ifdef PC98 - outb(IO_NPX, 0); + outb(0xf8, 0); #else outb(0xf0, 0); #endif |