diff options
author | Nikolai Kondrashov <spbnick@gmail.com> | 2010-08-06 15:03:06 -0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2010-08-09 13:52:42 -0400 |
commit | 73e4008ddddc84d5f2499c17012b340a0dae153e (patch) | |
tree | d3adfa8c5792e71c21cb7a9cd18517cce9c92685 /drivers/hid/hid-ortek.c | |
parent | 3cfc2c42c1cbc8e238bb9c0612c0df4565e3a8b4 (diff) |
HID: allow resizing and replacing report descriptors
Update hid_driver's report_fixup prototype to allow changing report
descriptor size and/or returning completely different report descriptor.
Update existing usage accordingly.
This is to give more freedom in descriptor fixup and to allow having a whole
fixed descriptor in the code for the sake of readability.
Signed-off-by: Nikolai Kondrashov <spbnick@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-ortek.c')
-rw-r--r-- | drivers/hid/hid-ortek.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/hid/hid-ortek.c b/drivers/hid/hid-ortek.c index aa9a960f73a4..2e79716dca31 100644 --- a/drivers/hid/hid-ortek.c +++ b/drivers/hid/hid-ortek.c | |||
@@ -19,14 +19,15 @@ | |||
19 | 19 | ||
20 | #include "hid-ids.h" | 20 | #include "hid-ids.h" |
21 | 21 | ||
22 | static void ortek_report_fixup(struct hid_device *hdev, __u8 *rdesc, | 22 | static __u8 *ortek_report_fixup(struct hid_device *hdev, __u8 *rdesc, |
23 | unsigned int rsize) | 23 | unsigned int *rsize) |
24 | { | 24 | { |
25 | if (rsize >= 56 && rdesc[54] == 0x25 && rdesc[55] == 0x01) { | 25 | if (*rsize >= 56 && rdesc[54] == 0x25 && rdesc[55] == 0x01) { |
26 | dev_info(&hdev->dev, "Fixing up Ortek WKB-2000 " | 26 | dev_info(&hdev->dev, "Fixing up Ortek WKB-2000 " |
27 | "report descriptor.\n"); | 27 | "report descriptor.\n"); |
28 | rdesc[55] = 0x92; | 28 | rdesc[55] = 0x92; |
29 | } | 29 | } |
30 | return rdesc; | ||
30 | } | 31 | } |
31 | 32 | ||
32 | static const struct hid_device_id ortek_devices[] = { | 33 | static const struct hid_device_id ortek_devices[] = { |