diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-23 20:13:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-08-23 20:13:14 +0000 |
commit | 14464f46df50c3f25f35b0174dd890ff54e9a0dd (patch) | |
tree | 884344b4df1cab5821d0aa615bfa659305b6af52 /sys/dev/isa | |
parent | 71b4b4983d10c51e0536096f9e2885caa92194c9 (diff) |
silence probe more
Diffstat (limited to 'sys/dev/isa')
-rw-r--r-- | sys/dev/isa/ad1848.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/isa/ad1848.c b/sys/dev/isa/ad1848.c index eba59eaa410..bea11d59d2f 100644 --- a/sys/dev/isa/ad1848.c +++ b/sys/dev/isa/ad1848.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ad1848.c,v 1.6 1996/07/04 21:00:57 deraadt Exp $ */ +/* $OpenBSD: ad1848.c,v 1.7 1996/08/23 20:13:13 deraadt Exp $ */ /* $NetBSD: ad1848.c,v 1.10 1996/04/29 20:02:32 christos Exp $ */ /* @@ -322,7 +322,9 @@ ad1848_probe(sc) * If the I/O address is unused, inb() typically returns 0xff. */ if (((tmp = inb(iobase+AD1848_IADDR)) & SP_IN_INIT) != 0x00) { /* Not a AD1848 */ +#if 0 DPRINTF(("ad_detect_A %x\n", tmp)); +#endif return 0; } |