summaryrefslogtreecommitdiff
path: root/sys/dev/isa
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-23 13:44:51 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-23 13:44:51 +0000
commit6c1b4744454ff9a4d3a483bc57e73a34e390dca3 (patch)
tree88c7e3a7aac004285a3439be260b772a31e26f28 /sys/dev/isa
parente5821700a003322fc5dae79fa5f6c836ff6aa3f4 (diff)
probe must be silent if no device
Diffstat (limited to 'sys/dev/isa')
-rw-r--r--sys/dev/isa/wss.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/isa/wss.c b/sys/dev/isa/wss.c
index d5c6f0c0752..593157ba477 100644
--- a/sys/dev/isa/wss.c
+++ b/sys/dev/isa/wss.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: wss.c,v 1.12 1996/05/29 08:18:01 mickey Exp $ */
+/* $OpenBSD: wss.c,v 1.13 1996/06/23 13:44:50 deraadt Exp $ */
/* $NetBSD: wss.c,v 1.13 1996/05/12 23:54:16 mycroft Exp $ */
/*
@@ -209,7 +209,9 @@ wssprobe(parent, match, aux)
/* Is there an ad1848 chip at the WSS iobase ? */
if (ad1848_probe(&sc->sc_ad1848) == 0) {
+#if 0
printf("ad_detect_A: no ad1848 found.\n");
+#endif
return 0;
}