summaryrefslogtreecommitdiffstats
path: root/sys/pccard
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2002-07-17 05:50:06 +0000
committerimp <imp@FreeBSD.org>2002-07-17 05:50:06 +0000
commita8a6ea13ae0e257e5651b27a08cd19753fefcdae (patch)
tree20c42976405120f50c455fcd833b81d7006f6057 /sys/pccard
parent1bf2662143b6b2a1233b51ebdb21465df09229f0 (diff)
downloadFreeBSD-src-a8a6ea13ae0e257e5651b27a08cd19753fefcdae.zip
FreeBSD-src-a8a6ea13ae0e257e5651b27a08cd19753fefcdae.tar.gz
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.
Diffstat (limited to 'sys/pccard')
-rw-r--r--sys/pccard/pccard_nbk.c5
1 files changed, 5 insertions, 0 deletions
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, "");
OpenPOWER on IntegriCloud