diff options
author | Henrik Rydberg <[email protected]> | 2012-09-03 12:28:59 +0200 |
---|---|---|
committer | Henrik Rydberg <[email protected]> | 2012-09-19 19:50:20 +0200 |
commit | 7e55bdedfa4a72baa0d4fec8d0948cb65342a9a0 (patch) | |
tree | 6070fa78d6c1d1d37a3709cf63e65a35d7d95eb4 | |
parent | 9ebf3d7687192923e3d44fdbcd8d9f8375053fb8 (diff) |
HID: Allow more fields in the hid report
Some recent hardware define more than 128 fields in the report
descriptor. Increase the limit to 256. This adds another kilobyte of
memory per report.
Tested-by: Ping Cheng <[email protected]>
Acked-by: Jiri Kosina <[email protected]>
Signed-off-by: Henrik Rydberg <[email protected]>
-rw-r--r-- | include/linux/hid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/hid.h b/include/linux/hid.h index f37da2803005..7e1f37db7582 100644 --- a/include/linux/hid.h +++ b/include/linux/hid.h @@ -414,7 +414,7 @@ struct hid_field { __u16 dpad; /* dpad input code */ }; -#define HID_MAX_FIELDS 128 +#define HID_MAX_FIELDS 256 struct hid_report { struct list_head list; |