diff options
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/input/hid-core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/input/hid-core.c b/drivers/usb/input/hid-core.c index ef09952f2039..905156c52ad3 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) | |||
1225 | le16_to_cpu(dev->descriptor.idProduct)); | 1225 | le16_to_cpu(dev->descriptor.idProduct)); |
1226 | 1226 | ||
1227 | hid->bus = BUS_USB; | 1227 | hid->bus = BUS_USB; |
1228 | hid->vendor = dev->descriptor.idVendor; | 1228 | hid->vendor = le16_to_cpu(dev->descriptor.idVendor); |
1229 | hid->product = dev->descriptor.idProduct; | 1229 | hid->product = le16_to_cpu(dev->descriptor.idProduct); |
1230 | 1230 | ||
1231 | usb_make_path(dev, hid->phys, sizeof(hid->phys)); | 1231 | usb_make_path(dev, hid->phys, sizeof(hid->phys)); |
1232 | strlcat(hid->phys, "/input", sizeof(hid->phys)); | 1232 | strlcat(hid->phys, "/input", sizeof(hid->phys)); |