diff options
author | 2000-04-28 13:36:58 +0000 | |
---|---|---|
committer | 2000-04-28 13:36:58 +0000 | |
commit | a3f6fc710a18a349cc9b34ee31aa507b4abfb5b9 (patch) | |
tree | 6477d92ec003db04d94279d3d18374677e5c28c5 | |
parent | support for x11-fwding, client+server (diff) | |
download | wireguard-openbsd-a3f6fc710a18a349cc9b34ee31aa507b4abfb5b9.tar.xz wireguard-openbsd-a3f6fc710a18a349cc9b34ee31aa507b4abfb5b9.zip |
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.
-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. |