From a8a6ea13ae0e257e5651b27a08cd19753fefcdae Mon Sep 17 00:00:00 2001 From: imp Date: Wed, 17 Jul 2002 05:50:06 +0000 Subject: Be more conservative about the address ranges we assign. Some machines don't like the more liberal default, so be more conservative about what we do by default. --- sys/pccard/pccard_nbk.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'sys/pccard') diff --git a/sys/pccard/pccard_nbk.c b/sys/pccard/pccard_nbk.c index 17aa6ca..5621cd2 100644 --- a/sys/pccard/pccard_nbk.c +++ b/sys/pccard/pccard_nbk.c @@ -86,8 +86,13 @@ devclass_t pccard_devclass; SYSCTL_NODE(_machdep, OID_AUTO, pccard, CTLFLAG_RW, 0, "pccard"); +#ifdef UNSAFE static u_long mem_start = IOM_BEGIN; static u_long mem_end = IOM_END; +#else +static u_long mem_start = 0xd0000; +static u_long mem_end = 0xeffff; +#endif SYSCTL_ULONG(_machdep_pccard, OID_AUTO, mem_start, CTLFLAG_RW, &mem_start, 0, ""); -- cgit v1.1