diff options
author | n_hibma <n_hibma@FreeBSD.org> | 1999-07-03 22:19:41 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 1999-07-03 22:19:41 +0000 |
commit | 59faa57fcaefd9fe175ee7cabf551090b86eb08f (patch) | |
tree | 350cd92fcd2042e883522870afcfb971de660cbb /sys/dev | |
parent | dd9032408f241e4dda8ece337782edd7d88ad076 (diff) | |
download | FreeBSD-src-59faa57fcaefd9fe175ee7cabf551090b86eb08f.zip FreeBSD-src-59faa57fcaefd9fe175ee7cabf551090b86eb08f.tar.gz |
Add the semi-official Bulk protocol id 'P'
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/usb/usb.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/dev/usb/usb.h b/sys/dev/usb/usb.h index 514630e..ac0883f 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 */ |