projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
956295d
)
[PATCH] fallout from hcd-core patch
author
Al Viro
<viro@ftp.linux.org.uk>
Sat, 23 Sep 2006 00:29:34 +0000
(
01:29
+0100)
committer
Linus Torvalds
<torvalds@g5.osdl.org>
Sat, 23 Sep 2006 00:48:57 +0000
(17:48 -0700)
missing le16_to_cpu()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
drivers/usb/input/hid-core.c
patch
|
blob
|
history
diff --git
a/drivers/usb/input/hid-core.c
b/drivers/usb/input/hid-core.c
index a2c56b2de58984d901340ebc01bb639f25c9fc01..3305fb6079eb1d968bd8a3ee4357b6d3be2c7f74 100644
(file)
--- a/
drivers/usb/input/hid-core.c
+++ b/
drivers/usb/input/hid-core.c
@@
-1818,7
+1818,7
@@
static struct hid_device *usb_hid_configure(struct usb_interface *intf)
int n, len, insize = 0;
/* Ignore all Wacom devices */
- if (
dev->descriptor.idVendor
== USB_VENDOR_ID_WACOM)
+ if (
le16_to_cpu(dev->descriptor.idVendor)
== USB_VENDOR_ID_WACOM)
return NULL;
for (n = 0; hid_blacklist[n].idVendor; n++)