diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-06-22 21:01:25 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-06-22 21:01:25 +0000 |
commit | 42f71ccc1aab9b97e960d420fd240411c225ffce (patch) | |
tree | 06c32b4808660f34e1cb030a300169ac5a438027 /sys/arch | |
parent | 31fcdeb6135796a5ed7a90845a3eb3975ff8b468 (diff) |
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@
Diffstat (limited to 'sys/arch')
-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 |