diff options
author | 2004-05-17 12:37:13 +0000 | |
---|---|---|
committer | 2004-05-17 12:37:13 +0000 | |
commit | e53696d0283f752b0b9f0d8efdfb4658859b2da5 (patch) | |
tree | 99768dcd6b3420aa7ae1b7a53d7e487b1a5522ca | |
parent | Update floatformat.[ch] to gdb-6.1 version. Include regex.c in library. (diff) | |
download | wireguard-openbsd-e53696d0283f752b0b9f0d8efdfb4658859b2da5.tar.xz wireguard-openbsd-e53696d0283f752b0b9f0d8efdfb4658859b2da5.zip |
Add a quirk entry for TEAC compact cassette tape drive, taken from NetBSD.
ok miod@ tdeval@ marco@ krw@
-rw-r--r-- | sys/scsi/st.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/scsi/st.c b/sys/scsi/st.c index f19d6352518..b9069628c2c 100644 --- a/sys/scsi/st.c +++ b/sys/scsi/st.c @@ -1,4 +1,4 @@ -/* $OpenBSD: st.c,v 1.36 2004/05/09 04:01:59 krw Exp $ */ +/* $OpenBSD: st.c,v 1.37 2004/05/17 12:37:13 aoyama Exp $ */ /* $NetBSD: st.c,v 1.71 1997/02/21 23:03:49 thorpej Exp $ */ /* @@ -240,6 +240,14 @@ const struct st_quirk_inquiry_pattern st_quirk_patterns[] = { {0, 0, 0}, /* minor 8-11 */ {0, 0, 0} /* minor 12-15 */ }}}, + {{T_SEQUENTIAL, T_REMOV, + "TEAC ", "MT-2ST/N50 ", ""}, {ST_Q_IGNORE_LOADS, 0, { + {0, 0, 0}, /* minor 0-3 */ + {0, 0, 0}, /* minor 4-7 */ + {0, 0, 0}, /* minor 8-11 */ + {0, 0, 0} /* minor 12-15 */ + }}}, + }; #define NOEJECT 0 |