diff options
author | 2001-06-22 21:01:24 +0000 | |
---|---|---|
committer | 2001-06-22 21:01:24 +0000 | |
commit | 32f6ad98195d6f4b0cff78611ffff34acfa010de (patch) | |
tree | 233c811e28329b9b0e7a90205098d83aaa879302 | |
parent | add more ipsec commands (diff) | |
download | wireguard-openbsd-32f6ad98195d6f4b0cff78611ffff34acfa010de.tar.xz wireguard-openbsd-32f6ad98195d6f4b0cff78611ffff34acfa010de.zip |
shift the range for i/o space allocation to 0xa000 as it
seems that some compaq machines have smth in the existing
range at 0x2000.
from nate@
-rw-r--r-- | sys/arch/i386/i386/rbus_machdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/rbus_machdep.c b/sys/arch/i386/i386/rbus_machdep.c index 0bbacc29ef3..452d231f109 100644 --- a/sys/arch/i386/i386/rbus_machdep.c +++ b/sys/arch/i386/i386/rbus_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rbus_machdep.c,v 1.10 2001/06/08 08:08:53 art Exp $ */ +/* $OpenBSD: rbus_machdep.c,v 1.11 2001/06/22 21:01:24 mickey Exp $ */ /* $NetBSD: rbus_machdep.c,v 1.2 1999/10/15 06:43:06 haya Exp $ */ /* @@ -173,7 +173,7 @@ rbus_pccbb_parent_mem(pa) /********************************************************************** * rbus_tag_t rbus_pccbb_parent_io(struct pci_attach_args *pa) **********************************************************************/ -#define RBUS_IO_START 0x2000 +#define RBUS_IO_START 0xa000 #define RBUS_IO_SIZE 0x1000 rbus_tag_t |