aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/usb/storage.h
diff options
context:
space:
mode:
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>2012-02-25 18:28:12 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-02-28 11:11:22 -0800
commit03892d5fefbe7d4df68466bd4cfda86fac84ebd8 (patch)
tree8066acecc2e0e99295d40f2867f695c53d484c3d /include/linux/usb/storage.h
parentusb/gadget: use common defines within the storage gadget (diff)
downloadlinux-dev-03892d5fefbe7d4df68466bd4cfda86fac84ebd8.tar.xz
linux-dev-03892d5fefbe7d4df68466bd4cfda86fac84ebd8.zip
usb/storage: remove Filler member from struct bulk_cs_wrap
As Alan Stern pointed out this member has nothing to do with the Command Status Wrapper (CSW) as specified by the Universal Serial Bus Mass Storage Class Bulk-Only Transport rev 1.0. It defines the structure without the additional 18 filler bytes and defines the total size of the struct to exactly 13 bytes. Larger responses should be dropped. All in-tree users use a defines instead of sizeof() of this struct as far I can tell. Cc: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/usb/storage.h')
-rw-r--r--include/linux/usb/storage.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/usb/storage.h b/include/linux/usb/storage.h
index 4de58b15fad6..cb33fff2ba0b 100644
--- a/include/linux/usb/storage.h
+++ b/include/linux/usb/storage.h
@@ -71,7 +71,6 @@ struct bulk_cs_wrap {
__u32 Tag; /* same as original command */
__le32 Residue; /* amount not transferred */
__u8 Status; /* see below */
- __u8 Filler[18];
};
#define US_BULK_CS_WRAP_LEN 13