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/usbkbd.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/usbkbd.c')
-rw-r--r-- | drivers/usb/input/usbkbd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/input/usbkbd.c b/drivers/usb/input/usbkbd.c index 8505824848f6..3749f4a235f9 100644 --- a/drivers/usb/input/usbkbd.c +++ b/drivers/usb/input/usbkbd.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 |
@@ -330,7 +331,8 @@ static void usb_kbd_disconnect(struct usb_interface *intf) | |||
330 | } | 331 | } |
331 | 332 | ||
332 | static struct usb_device_id usb_kbd_id_table [] = { | 333 | static struct usb_device_id usb_kbd_id_table [] = { |
333 | { USB_INTERFACE_INFO(3, 1, 1) }, | 334 | { USB_INTERFACE_INFO(USB_INTERFACE_CLASS_HID, USB_INTERFACE_SUBCLASS_BOOT, |
335 | USB_INTERFACE_PROTOCOL_KEYBOARD) }, | ||
334 | { } /* Terminating entry */ | 336 | { } /* Terminating entry */ |
335 | }; | 337 | }; |
336 | 338 | ||