summaryrefslogtreecommitdiffstats
path: root/sys/dev/sn/if_sn_isa.c
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>1999-12-28 01:07:16 +0000
committerimp <imp@FreeBSD.org>1999-12-28 01:07:16 +0000
commit293c4f50f0f5561061a3452727209e02d889e8f9 (patch)
treefd62b434bca53a8334b73f1d99bc652cba4af864 /sys/dev/sn/if_sn_isa.c
parent83843a44a4f7ba061906588ceae18db10c46859c (diff)
downloadFreeBSD-src-293c4f50f0f5561061a3452727209e02d889e8f9.zip
FreeBSD-src-293c4f50f0f5561061a3452727209e02d889e8f9.tar.gz
Two nits and disable isa probe due to its overly agressive claiming of
devices. o Return ENXIO from sn_isa_probe o Fix SN_DEBUG printf o Use IFQ_MAXLEN rather than 8 I'll fix the isa probe when I get access to a real isa attachment device to test against here in a few days. Overly agressive snagging behavior noticed by: phk
Diffstat (limited to 'sys/dev/sn/if_sn_isa.c')
-rw-r--r--sys/dev/sn/if_sn_isa.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/sn/if_sn_isa.c b/sys/dev/sn/if_sn_isa.c
index f6c549d..0922d44 100644
--- a/sys/dev/sn/if_sn_isa.c
+++ b/sys/dev/sn/if_sn_isa.c
@@ -60,9 +60,10 @@ static int sn_isa_attach (device_t);
static int
sn_isa_probe (device_t dev)
{
+#if 0
if (sn_probe(dev, 0) != 0)
return (0);
-
+#endif
return (ENXIO);
}
OpenPOWER on IntegriCloud