diff options
author | Michael Opdenacker <michael-lists@free-electrons.com> | 2007-02-21 16:51:25 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-02-23 18:03:46 -0500 |
commit | 4ef2e23f03c597e2073b649e7287b840f8fb9274 (patch) | |
tree | 75e7aff3cc4be47121cfa2a51f30af6c087e9894 /drivers/usb/input/usbmouse.c | |
parent | 672027a35795ec95f516fdc702ba8900d55a9eef (diff) |
USB: Use USB defines in usbmouse.c and usbkbd.c
The below patch proposes to use USB defines (defined in linux/hid.h)
instead of just plain numbers in the USB_INTERFACE_INFO statements.
Signed-off-by: Michael Opdenacker <michael@free-electrons.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/input/usbmouse.c')
-rw-r--r-- | drivers/usb/input/usbmouse.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/input/usbmouse.c b/drivers/usb/input/usbmouse.c index 64a33e420cfb..692fd6087779 100644 --- a/drivers/usb/input/usbmouse.c +++ b/drivers/usb/input/usbmouse.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <linux/module.h> | 31 | #include <linux/module.h> |
32 | #include <linux/init.h> | 32 | #include <linux/init.h> |
33 | #include <linux/usb/input.h> | 33 | #include <linux/usb/input.h> |
34 | #include <linux/hid.h> | ||
34 | 35 | ||
35 | /* | 36 | /* |
36 | * Version Information | 37 | * Version Information |
@@ -213,7 +214,8 @@ static void usb_mouse_disconnect(struct usb_interface *intf) | |||
213 | } | 214 | } |
214 | 215 | ||
215 | static struct usb_device_id usb_mouse_id_table [] = { | 216 | static struct usb_device_id usb_mouse_id_table [] = { |
216 | { USB_INTERFACE_INFO(3, 1, 2) }, | 217 | { USB_INTERFACE_INFO(USB_INTERFACE_CLASS_HID, USB_INTERFACE_SUBCLASS_BOOT, |
218 | USB_INTERFACE_PROTOCOL_MOUSE) }, | ||
217 | { } /* Terminating entry */ | 219 | { } /* Terminating entry */ |
218 | }; | 220 | }; |
219 | 221 | ||