diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2008-04-28 02:00:16 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 13:03:31 -0400 |
commit | fd05e720099e8eeddb378305d1a41c1445344b91 (patch) | |
tree | d617918be290b47b35822bc3cf21c8f01dde5dd2 /drivers/usb/host/sl811-hcd.c | |
parent | 01d7b369887b6feb7c9ce2b20988fafe3f70841c (diff) |
drivers/usb annotations and fixes
* endianness annotations
* endianness fixes
* missing get_unaligned/put_unaligned
It's pretty much all over the place, changes to different files are independent.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Serial-parts-Acked-by: Alan Cox <alan@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/usb/host/sl811-hcd.c')
-rw-r--r-- | drivers/usb/host/sl811-hcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/sl811-hcd.c b/drivers/usb/host/sl811-hcd.c index 274276cf8621..3fd7a0c12078 100644 --- a/drivers/usb/host/sl811-hcd.c +++ b/drivers/usb/host/sl811-hcd.c | |||
@@ -1100,7 +1100,7 @@ sl811h_hub_descriptor ( | |||
1100 | /* no overcurrent errors detection/handling */ | 1100 | /* no overcurrent errors detection/handling */ |
1101 | temp |= 0x0010; | 1101 | temp |= 0x0010; |
1102 | 1102 | ||
1103 | desc->wHubCharacteristics = (__force __u16)cpu_to_le16(temp); | 1103 | desc->wHubCharacteristics = cpu_to_le16(temp); |
1104 | 1104 | ||
1105 | /* two bitmaps: ports removable, and legacy PortPwrCtrlMask */ | 1105 | /* two bitmaps: ports removable, and legacy PortPwrCtrlMask */ |
1106 | desc->bitmap[0] = 0 << 1; | 1106 | desc->bitmap[0] = 0 << 1; |