diff options
| author | mikel <mikel@NetBSD.org> | 1996-11-05 07:17:23 +0000 |
|---|---|---|
| committer | mikel <mikel@NetBSD.org> | 1996-11-05 07:17:23 +0000 |
| commit | 697941357c19f1635579f4a71c5ea84c2bfb5985 (patch) | |
| tree | 2c6dcc6d97d56ecfb96b1c3214d4ab17a750f970 /sys/dev | |
| parent | acaccdd747a67128be81819b379ffba00b317d8a (diff) | |
Eliminate unsolicited spewage; PR #2108.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/isa/if_ie.c | 4 | ||||
| -rw-r--r-- | sys/dev/isa/mcd.c | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/sys/dev/isa/if_ie.c b/sys/dev/isa/if_ie.c index 5ea627c1cd6..0bb53d911ec 100644 --- a/sys/dev/isa/if_ie.c +++ b/sys/dev/isa/if_ie.c @@ -1,4 +1,4 @@ -/* $NetBSD: if_ie.c,v 1.55 1996/10/21 22:40:59 thorpej Exp $ */ +/* $NetBSD: if_ie.c,v 1.56 1996/11/05 07:17:23 mikel Exp $ */ /*- * Copyright (c) 1993, 1994, 1995 Charles Hannum. @@ -423,7 +423,7 @@ sl_probe(sc, ia) default: /* Anything else is not recognized or cannot be used. */ -#ifdef DIAGNOSTIC +#ifdef IEDEBUG printf("%s: unknown AT&T board type code %d\n", sc->sc_dev.dv_xname, SL_BOARD(c)); #endif diff --git a/sys/dev/isa/mcd.c b/sys/dev/isa/mcd.c index ca064dd4971..daf29d00814 100644 --- a/sys/dev/isa/mcd.c +++ b/sys/dev/isa/mcd.c @@ -1,4 +1,4 @@ -/* $NetBSD: mcd.c,v 1.51 1996/10/13 01:37:56 christos Exp $ */ +/* $NetBSD: mcd.c,v 1.52 1996/11/05 07:17:25 mikel Exp $ */ /* * Copyright (c) 1993, 1994, 1995 Charles M. Hannum. All rights reserved. @@ -807,9 +807,11 @@ mcdprobe(parent, match, aux) sc->readcmd = MCD_CMDREADDOUBLESPEED; break; default: +#ifdef MCDDEBUG printf("%s: unrecognized drive version %c%02x; will try to use it anyway\n", sc->sc_dev.dv_xname, mbx.res.data.continfo.code, mbx.res.data.continfo.version); +#endif sc->type = 0; break; } |
