aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/usb
diff options
context:
space:
mode:
Diffstat (limited to 'sys/dev/usb')
-rw-r--r--sys/dev/usb/usb.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/usb/usb.h b/sys/dev/usb/usb.h
index 514630e0904f8..ac0883fa15be9 100644
--- a/sys/dev/usb/usb.h
+++ b/sys/dev/usb/usb.h
@@ -358,7 +358,12 @@ typedef struct {
#define USUBCLASS_SCSI 6 /* SCSI transparent comman set */
#define UPROTO_MASS_CBI_I 0 /* CBI protocol with comm. compl. int */
#define UPROTO_MASS_CBI 1 /* CBI protocol */
-#define UPROTO_MASS_BULK /*TBD*/ / * Bulk only transport * /
+/*
+ * XXX Pat LaVarre (Iomega): there are Bulk-Only devices using 0x02,
+ * but recent versions of the Mass Storage spec. require it to be 0x50.
+ */
+#define UPROTO_MASS_BULK 80 /* 'P' for prototype, used by ZIP 100 */
+#define UPROTO_MASS_BULK2 2 /* Bulk only transport */
#define UCLASS_HUB 9 /* Hub */
#define USUBCLASS_HUB 0
#define UCLASS_DATA 10 /* Data pipe for CDC */