diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-09-20 06:08:11 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-09-20 06:08:11 +0000 |
commit | 4909b03ce500337461ef8ac1f9f5637782ca693d (patch) | |
tree | d78114234db364d75a6ceb86ef7c0b0d0891223b /sys | |
parent | 898745818e69a103b51b37aa7144460829ccca57 (diff) |
silent probe, silent attach; netbsd pr#2108, mike.long@analog.com
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/isa/mcd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/isa/mcd.c b/sys/dev/isa/mcd.c index 34a08493be2..0c13c11d319 100644 --- a/sys/dev/isa/mcd.c +++ b/sys/dev/isa/mcd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mcd.c,v 1.16 1996/06/10 00:48:05 deraadt Exp $ */ +/* $OpenBSD: mcd.c,v 1.17 1996/09/20 06:08:10 deraadt Exp $ */ /* $NetBSD: mcd.c,v 1.49 1996/05/12 23:53:11 mycroft Exp $ */ /* @@ -825,9 +825,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; } |