aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAl Viro <viro@ftp.linux.org.uk>2006-09-23 01:29:34 +0100
committerLinus Torvalds <torvalds@g5.osdl.org>2006-09-22 17:48:57 -0700
commitc03efdb202a4882f426ce49766859af4058c9b8a (patch)
tree9bdfd7ff7908d13193605b77faf4b0cc18ef484b /drivers
parent[PATCH] fix the survivors of fbcon_vbl_handler() renaming (diff)
downloadlinux-dev-c03efdb202a4882f426ce49766859af4058c9b8a.tar.xz
linux-dev-c03efdb202a4882f426ce49766859af4058c9b8a.zip
[PATCH] fallout from hcd-core patch
missing le16_to_cpu() Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/usb/input/hid-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/input/hid-core.c b/drivers/usb/input/hid-core.c
index a2c56b2de589..3305fb6079eb 100644
--- 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++)