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/serial/io_edgeport.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/serial/io_edgeport.c')
-rw-r--r-- | drivers/usb/serial/io_edgeport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/serial/io_edgeport.c b/drivers/usb/serial/io_edgeport.c index ce2e487f3240..06b52f4098f1 100644 --- a/drivers/usb/serial/io_edgeport.c +++ b/drivers/usb/serial/io_edgeport.c | |||
@@ -2993,7 +2993,7 @@ static int edge_startup (struct usb_serial *serial) | |||
2993 | usb_fill_bulk_urb(edge_serial->read_urb, dev, | 2993 | usb_fill_bulk_urb(edge_serial->read_urb, dev, |
2994 | usb_rcvbulkpipe(dev, endpoint->bEndpointAddress), | 2994 | usb_rcvbulkpipe(dev, endpoint->bEndpointAddress), |
2995 | edge_serial->bulk_in_buffer, | 2995 | edge_serial->bulk_in_buffer, |
2996 | endpoint->wMaxPacketSize, | 2996 | le16_to_cpu(endpoint->wMaxPacketSize), |
2997 | edge_bulk_in_callback, | 2997 | edge_bulk_in_callback, |
2998 | edge_serial); | 2998 | edge_serial); |
2999 | bulk_in_found = true; | 2999 | bulk_in_found = true; |