diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2000-04-28 13:36:59 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2000-04-28 13:36:59 +0000 |
commit | afa62cd970eb178bc75a6e0151eed0bd4a721c50 (patch) | |
tree | b79edfb5bfd4607f5598ed36e8bab7f72597f057 /sys/dev/pcmcia/pcmcia.c | |
parent | 93544d19d221ce4a71253f32a185b4e23015bc80 (diff) |
Disable framework for recognition of CIS-less cards, several other match
functions in the tree does not cope well. Since we have no driver for any
CIS-less cards, this disabling does not take away functionality, it only
removes a strcmp panic in the pcmcia probes.
Diffstat (limited to 'sys/dev/pcmcia/pcmcia.c')
-rw-r--r-- | sys/dev/pcmcia/pcmcia.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pcmcia/pcmcia.c b/sys/dev/pcmcia/pcmcia.c index 817e3f97947..a4afc36109f 100644 --- a/sys/dev/pcmcia/pcmcia.c +++ b/sys/dev/pcmcia/pcmcia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pcmcia.c,v 1.27 2000/04/24 19:06:00 niklas Exp $ */ +/* $OpenBSD: pcmcia.c,v 1.28 2000/04/28 13:36:58 niklas Exp $ */ /* $NetBSD: pcmcia.c,v 1.9 1998/08/13 02:10:55 eeh Exp $ */ /* @@ -178,7 +178,7 @@ pcmcia_card_attach(dev) pcmcia_check_cis_quirks(sc); -#if 0 +#if 1 /* * Bail now if the card has no functions, or if there was an error in * the CIS. |