From b07aa508a2e10d93fc7bb88a7c9ab25c190860e1 Mon Sep 17 00:00:00 2001 From: imp Date: Sat, 8 Apr 2000 17:23:46 +0000 Subject: Re-enable probe for isa and correct the plug and play issue that caused this device to be disabled. It will no longer claim all devices with PNPBIOS enabled. --- sys/dev/sn/if_sn_isa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/sn') diff --git a/sys/dev/sn/if_sn_isa.c b/sys/dev/sn/if_sn_isa.c index 1ff9de4..ab34a23 100644 --- a/sys/dev/sn/if_sn_isa.c +++ b/sys/dev/sn/if_sn_isa.c @@ -60,10 +60,10 @@ static int sn_isa_attach (device_t); static int sn_isa_probe (device_t dev) { -#if 0 + if (isa_get_logicalid(dev)) /* skip PnP probes */ + return (ENXIO); if (sn_probe(dev, 0) != 0) return (0); -#endif return (ENXIO); } -- cgit v1.1