summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2005-07-13 15:44:53 +0000
committerjhb <jhb@FreeBSD.org>2005-07-13 15:44:53 +0000
commitfa4b3709bb561c7765f5f22cd3e7fc5637122f5a (patch)
tree9bf89f5867efb03162d5a7d038036263193a8559
parent4084c7b256b0ebcd271a8fae55578eb399b5b0b9 (diff)
downloadFreeBSD-src-fa4b3709bb561c7765f5f22cd3e7fc5637122f5a.zip
FreeBSD-src-fa4b3709bb561c7765f5f22cd3e7fc5637122f5a.tar.gz
Don't try to probe ISA PnP devices for now until this driver can grow a
list of known-valid PnP IDs. Discussed with: imp MFC after: 3 days
-rw-r--r--sys/dev/advansys/adv_isa.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/dev/advansys/adv_isa.c b/sys/dev/advansys/adv_isa.c
index e0b7c15..7bfb93b 100644
--- a/sys/dev/advansys/adv_isa.c
+++ b/sys/dev/advansys/adv_isa.c
@@ -116,6 +116,12 @@ adv_isa_probe(device_t dev)
struct resource *iores, *irqres;
/*
+ * We don't know of any PnP ID's for these cards.
+ */
+ if (isa_get_logicalid(dev) != 0)
+ return (ENXIO);
+
+ /*
* Default to scanning all possible device locations.
*/
port_index = 0;
OpenPOWER on IntegriCloud