diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-04-19 16:10:53 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-04-19 16:10:53 +0000 |
commit | 7c4cfc5c047725e6c4c20e9adaa1ef4e70ff68d1 (patch) | |
tree | d415490c429995abee8d4ce27fac8216028a989c /sys/scsi/st.c | |
parent | 6b3902486151983e34413a0e5a4bead588217855 (diff) |
NetBSD 960317 merge
Diffstat (limited to 'sys/scsi/st.c')
-rw-r--r-- | sys/scsi/st.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/sys/scsi/st.c b/sys/scsi/st.c index 8e832999305..3a652acea0d 100644 --- a/sys/scsi/st.c +++ b/sys/scsi/st.c @@ -1,4 +1,5 @@ -/* $NetBSD: st.c,v 1.54 1995/10/13 20:01:08 gwr Exp $ */ +/* $OpenBSD: st.c,v 1.9 1996/04/19 16:10:28 niklas Exp $ */ +/* $NetBSD: st.c,v 1.62 1996/03/05 00:15:23 thorpej Exp $ */ /* * Copyright (c) 1994 Charles Hannum. All rights reserved. @@ -201,22 +202,22 @@ struct st_quirk_inquiry_pattern st_quirk_patterns[] = { {0, 0, 0}, /* minor 8-11 */ {0, 0, 0} /* minor 12-15 */ }}}, +#if 0 {{T_SEQUENTIAL, T_REMOV, - "WANGTEK ", "5150ES SCSI FA15\0""01 A", "????"}, {0, 0, { - {0, ST_Q_IGNORE_LOADS, 0}, /* minor 0-3 */ + "EXABYTE ", "EXB-8200 ", ""}, {0, 12, { + {0, 0, 0}, /* minor 0-3 */ {0, 0, 0}, /* minor 4-7 */ {0, 0, 0}, /* minor 8-11 */ {0, 0, 0} /* minor 12-15 */ }}}, -#if 0 +#endif {{T_SEQUENTIAL, T_REMOV, - "EXABYTE ", "EXB-8200 ", ""}, {0, 12, { - {0, 0, 0}, /* minor 0-3 */ + "WANGTEK ", "5150ES SCSI FA15\0""01 A", "????"}, {0, 0, { + {0, ST_Q_IGNORE_LOADS, 0}, /* minor 0-3 */ {0, 0, 0}, /* minor 4-7 */ {0, 0, 0}, /* minor 8-11 */ {0, 0, 0} /* minor 12-15 */ }}}, -#endif }; #define NOEJECT 0 @@ -367,7 +368,8 @@ stattach(parent, self, aux) * the drive. We cannot use interrupts yet, so the * request must specify this. */ - printf(": %s", st->quirkdata ? "rogue, " : ""); + printf("\n"); + printf("%s: %s", st->sc_dev.dv_xname, st->quirkdata ? "rogue, " : ""); if (scsi_test_unit_ready(sc_link, SCSI_AUTOCONF | SCSI_SILENT | SCSI_IGNORE_MEDIA_CHANGE) || st_mode_sense(st, |