diff options
author | Sebastian Andrzej Siewior <bigeasy@linutronix.de> | 2012-01-11 06:45:57 -0500 |
---|---|---|
committer | Sarah Sharp <sarah.a.sharp@linux.intel.com> | 2012-02-02 17:51:19 -0500 |
commit | ee398b59ec1dc3ce1d60518f4ea644907893414b (patch) | |
tree | c18ef2b49269d17cffe85fa131796f8d45f49b1d /include | |
parent | 348748b0e8cccc675e2f3a1456460ffcd540e1a1 (diff) |
usb/uas: add usb_pipe_usage_descriptor
usb_pipe_usage_descriptor defines the struct which is used to describe
the type of the endpoint in UAS (status/command/data in+out). It will be
used by the UAS gadget, the host code is using a char array for the
access.
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Sarah Sharp <sarah.a.sharp@linux.intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/usb/uas.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/usb/uas.h b/include/linux/usb/uas.h index 856be7fcbbd8..9a988e413694 100644 --- a/include/linux/usb/uas.h +++ b/include/linux/usb/uas.h | |||
@@ -47,6 +47,14 @@ struct sense_iu { | |||
47 | __u8 sense[SCSI_SENSE_BUFFERSIZE]; | 47 | __u8 sense[SCSI_SENSE_BUFFERSIZE]; |
48 | }; | 48 | }; |
49 | 49 | ||
50 | struct usb_pipe_usage_descriptor { | ||
51 | __u8 bLength; | ||
52 | __u8 bDescriptorType; | ||
53 | |||
54 | __u8 bPipeID; | ||
55 | __u8 Reserved; | ||
56 | } __attribute__((__packed__)); | ||
57 | |||
50 | enum { | 58 | enum { |
51 | CMD_PIPE_ID = 1, | 59 | CMD_PIPE_ID = 1, |
52 | STATUS_PIPE_ID = 2, | 60 | STATUS_PIPE_ID = 2, |