Skip to content

Commit

Permalink
[PATCH] USB: optimise devio.c usbdev_read fix
Browse files Browse the repository at this point in the history
drivers/usb/core/devio.c: In function `usbdev_read':
drivers/usb/core/devio.c:140: error: invalid type argument of `->'
drivers/usb/core/devio.c:141: error: invalid type argument of `->'
drivers/usb/core/devio.c:142: error: invalid type argument of `->'
drivers/usb/core/devio.c:143: error: invalid type argument of `->'

Cc: Oliver Neukum <oliver@neukum.org>
Cc: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Andrew Morton authored and Greg Kroah-Hartman committed Mar 20, 2006
1 parent 8781ba0 commit 9fcd5c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/usb/core/devio.c
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,10 @@ static ssize_t usbdev_read(struct file *file, char __user *buf, size_t nbytes, l
struct usb_device_descriptor temp_desc ; /* 18 bytes - fits on the stack */

memcpy(&temp_desc, &dev->descriptor, sizeof(dev->descriptor));
le16_to_cpus(&temp_desc->bcdUSB);
le16_to_cpus(&temp_desc->idVendor);
le16_to_cpus(&temp_desc->idProduct);
le16_to_cpus(&temp_desc->bcdDevice);
le16_to_cpus(&temp_desc.bcdUSB);
le16_to_cpus(&temp_desc.idVendor);
le16_to_cpus(&temp_desc.idProduct);
le16_to_cpus(&temp_desc.bcdDevice);

len = sizeof(struct usb_device_descriptor) - pos;
if (len > nbytes)
Expand Down

0 comments on commit 9fcd5c3

Please sign in to comment.