aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/mt
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2004-03-14 12:09:43 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2004-03-14 12:09:43 +0000
commit1a490c95d23740d31df41b0d338ad632ef102a85 (patch)
tree82e87f350d311e1c64cd1fbb0a6bf39f03622ce3 /usr.bin/mt
parenteba504ff39c449b914c5cd99199f8ac3e223e64a (diff)
Notes
Diffstat (limited to 'usr.bin/mt')
-rw-r--r--usr.bin/mt/mt.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/usr.bin/mt/mt.c b/usr.bin/mt/mt.c
index a320e97f6a47e..95ef836c6cad2 100644
--- a/usr.bin/mt/mt.c
+++ b/usr.bin/mt/mt.c
@@ -306,29 +306,13 @@ main(argc, argv)
/* NOTREACHED */
}
-#if defined(__i386__)
-#include <machine/wtio.h>
-#endif
-
struct tape_desc {
short t_type; /* type of magtape device */
char *t_name; /* printing name */
char *t_dsbits; /* "drive status" register */
char *t_erbits; /* "error" register */
} tapes[] = {
- /*
- * XXX This is weird. The st driver reports the tape drive
- * as 0x7 (MT_ISAR - Sun/Archive compatible); the wt driver
- * either reports MT_ISVIPER1 for an Archive tape, or 0x11
- * (MT_ISMFOUR) for other tapes.
- * XXX for the wt driver, rely on it behaving like a "standard"
- * magtape driver.
- */
{ MT_ISAR, "SCSI tape drive", 0, 0 },
-#if defined (__i386__)
- { MT_ISVIPER1, "Archive Viper", WTDS_BITS, WTER_BITS },
- { MT_ISMFOUR, "Wangtek", WTDS_BITS, WTER_BITS },
-#endif
{ 0, NULL, 0, 0 }
};