diff options
author | Paul Walmsley <paul@booyaka.com> | 2007-04-19 13:27:04 +0200 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2007-04-19 13:27:04 +0200 |
commit | 2eb5dc30eb87aa30f67e3dff39d5c9f3fb643260 (patch) | |
tree | 7912fc684270fccc07d66a419eb85e0edc83752f /include | |
parent | 4d5a1be98d8d40a7c558005d423b3daed8ba1ddb (diff) | |
download | op-kernel-dev-2eb5dc30eb87aa30f67e3dff39d5c9f3fb643260.zip op-kernel-dev-2eb5dc30eb87aa30f67e3dff39d5c9f3fb643260.tar.gz |
USB HID: encapsulate quirk handling into hid-quirks.c
Move the USB_VENDOR* and USB_DEVICE* defines and the hid_blacklist[]
array there from hid-core.c. Add
hid-quirks.c:usbhid_lookup_any_quirks() to return quirk information to
hid-core.c. Convert __u32, __u16 types to u32, u16.
Signed-off-by: Paul Walmsley <paul@booyaka.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/hid.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/hid.h b/include/linux/hid.h index d73b24b..23e0dcf 100644 --- a/include/linux/hid.h +++ b/include/linux/hid.h @@ -495,6 +495,8 @@ void hid_output_report(struct hid_report *report, __u8 *data); void hid_free_device(struct hid_device *device); struct hid_device *hid_parse_report(__u8 *start, unsigned size); +u32 usbhid_lookup_quirk(const u16 idVendor, const u16 idProduct); + #ifdef CONFIG_HID_FF int hid_ff_init(struct hid_device *hid); |