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-monterey.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-monterey.c')
-rw-r--r-- | drivers/hid/hid-monterey.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/hid/hid-monterey.c b/drivers/hid/hid-monterey.c index 2cd05aa244b9..c95c31e2d869 100644 --- a/drivers/hid/hid-monterey.c +++ b/drivers/hid/hid-monterey.c | |||
@@ -22,14 +22,15 @@ | |||
22 | 22 | ||
23 | #include "hid-ids.h" | 23 | #include "hid-ids.h" |
24 | 24 | ||
25 | static void mr_report_fixup(struct hid_device *hdev, __u8 *rdesc, | 25 | static __u8 *mr_report_fixup(struct hid_device *hdev, __u8 *rdesc, |
26 | unsigned int rsize) | 26 | unsigned int *rsize) |
27 | { | 27 | { |
28 | if (rsize >= 30 && rdesc[29] == 0x05 && rdesc[30] == 0x09) { | 28 | if (*rsize >= 30 && rdesc[29] == 0x05 && rdesc[30] == 0x09) { |
29 | dev_info(&hdev->dev, "fixing up button/consumer in HID report " | 29 | dev_info(&hdev->dev, "fixing up button/consumer in HID report " |
30 | "descriptor\n"); | 30 | "descriptor\n"); |
31 | rdesc[30] = 0x0c; | 31 | rdesc[30] = 0x0c; |
32 | } | 32 | } |
33 | return rdesc; | ||
33 | } | 34 | } |
34 | 35 | ||
35 | #define mr_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \ | 36 | #define mr_map_key_clear(c) hid_map_usage_clear(hi, usage, bit, max, \ |