diff options
| author | brezak <brezak@NetBSD.org> | 1993-06-17 12:18:29 +0000 |
|---|---|---|
| committer | brezak <brezak@NetBSD.org> | 1993-06-17 12:18:29 +0000 |
| commit | ebfdfc5b8ae11ea9f869e48399423a42e36e829d (patch) | |
| tree | 79e855ae8dd092e32915ce0f1e5e178d904bec58 /sys/dev | |
| parent | dbf2e6e2b871f62991efefaf202731905b63fd49 (diff) | |
Silence size complaint at probe.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/scsipi/cd.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/dev/scsipi/cd.c b/sys/dev/scsipi/cd.c index caf32aad867..74feadc54fd 100644 --- a/sys/dev/scsipi/cd.c +++ b/sys/dev/scsipi/cd.c @@ -13,7 +13,7 @@ * on the understanding that TFS is not responsible for the correct * functioning of this software in any circumstances. * - * $Id: cd.c,v 1.12 1993/06/16 04:31:37 deraadt Exp $ + * $Id: cd.c,v 1.13 1993/06/17 12:18:29 brezak Exp $ */ #define SPLCD splbio @@ -135,7 +135,7 @@ cdattach(int masunit, struct scsi_switch *sw, int physid, int *unit) * the drive. We cannot use interrupts yet, so the * * request must specify this. * \*******************************************************/ - cd_get_parms(*unit, SCSI_NOSLEEP | SCSI_NOMASK); + cd_get_parms(*unit, SCSI_NOSLEEP | SCSI_NOMASK | SCSI_SILENT); printf("cd%d at %s%d targ %d lun %d: %s\n", *unit, sw->name, masunit, targ, lun, dp->disksize ? "loaded" : "empty"); @@ -994,7 +994,8 @@ cd_size(unit, flags) 2000, flags) != 0) { - printf("cd%d: could not get size\n", unit); + if(!(flags & SCSI_SILENT)) + printf("cd%d: could not get size\n", unit); return(0); } else { size = rdcap.addr_0 + 1 ; |
