diff options
author | kato <kato@FreeBSD.org> | 1999-04-01 13:41:40 +0000 |
---|---|---|
committer | kato <kato@FreeBSD.org> | 1999-04-01 13:41:40 +0000 |
commit | dcb1ee177c81221cf4fd417a8c69a70c0601e3fc (patch) | |
tree | 3961a40203e8ab8487e77b6a8a5aa13580fcb11b /sys/pc98 | |
parent | 62882b98bd806d6f0098c3b44ba3f6c5c4cfab03 (diff) | |
download | FreeBSD-src-dcb1ee177c81221cf4fd417a8c69a70c0601e3fc.zip FreeBSD-src-dcb1ee177c81221cf4fd417a8c69a70c0601e3fc.tar.gz |
Sync with sys/i386/isa/npx.c revision 1.66.
Diffstat (limited to 'sys/pc98')
-rw-r--r-- | sys/pc98/pc98/npx.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/pc98/pc98/npx.c b/sys/pc98/pc98/npx.c index 03077dd..a26ff4b 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.41 1998/12/17 08:41:34 kato Exp $ + * $Id: npx.c,v 1.42 1999/01/16 11:41:18 kato Exp $ */ #include "npx.h" @@ -127,8 +127,10 @@ typedef u_char bool_t; static int npxattach __P((struct isa_device *dvp)); static int npxprobe __P((struct isa_device *dvp)); static int npxprobe1 __P((struct isa_device *dvp)); +#ifdef I586_CPU static long timezero __P((const char *funcname, void (*func)(void *buf, size_t len))); +#endif /* I586_CPU */ struct isa_driver npxdriver = { npxprobe, npxattach, "npx", |