From 106e24aa5b7298474926c7e30869219e235fff00 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Wed, 13 Jul 2005 15:44:53 +0000 Subject: 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 --- sys/dev/advansys/adv_isa.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'sys/dev/advansys') diff --git a/sys/dev/advansys/adv_isa.c b/sys/dev/advansys/adv_isa.c index e0b7c1591bac..7bfb93babdf9 100644 --- a/sys/dev/advansys/adv_isa.c +++ b/sys/dev/advansys/adv_isa.c @@ -115,6 +115,12 @@ adv_isa_probe(device_t dev) void *ih; 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. */ -- cgit v1.3