aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb
diff options
context:
space:
mode:
authorJulien BLACHE <jb@jblache.org>2007-02-11 18:20:25 +0100
committerJiri Kosina <jkosina@suse.cz>2007-03-01 09:52:37 +0100
commit9fa2ad5ff4d8ded8c29c7b6cc92a1c3a8d8a2079 (patch)
tree86e4b4c0071a722c13446d59a5bda7ce65bbfc42 /drivers/usb
parent606135a3081e045b677cde164a296c51f66c4633 (diff)
downloadkernel_samsung_tuna-9fa2ad5ff4d8ded8c29c7b6cc92a1c3a8d8a2079.zip
kernel_samsung_tuna-9fa2ad5ff4d8ded8c29c7b6cc92a1c3a8d8a2079.tar.gz
kernel_samsung_tuna-9fa2ad5ff4d8ded8c29c7b6cc92a1c3a8d8a2079.tar.bz2
USB HID: Fix USB vendor and product IDs endianness for USB HID devices
The USB vendor and product IDs are not byteswapped appropriately, and thus come out in the wrong endianness when fetched through the evdev using ioctl() on big endian platforms. Signed-off-by: Julien BLACHE <jb@jblache.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/usb')
-rw-r--r--drivers/usb/input/hid-core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/input/hid-core.c b/drivers/usb/input/hid-core.c
index ef09952..905156c 100644
--- a/drivers/usb/input/hid-core.c
+++ b/drivers/usb/input/hid-core.c
@@ -1225,8 +1225,8 @@ static struct hid_device *usb_hid_configure(struct usb_interface *intf)
le16_to_cpu(dev->descriptor.idProduct));
hid->bus = BUS_USB;
- hid->vendor = dev->descriptor.idVendor;
- hid->product = dev->descriptor.idProduct;
+ hid->vendor = le16_to_cpu(dev->descriptor.idVendor);
+ hid->product = le16_to_cpu(dev->descriptor.idProduct);
usb_make_path(dev, hid->phys, sizeof(hid->phys));
strlcat(hid->phys, "/input", sizeof(hid->phys));