]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
HID: rdesc parser: remove local item size limit
authorNikolai Kondrashov <spbnick@gmail.com>
Sun, 22 Aug 2010 17:26:22 +0000 (21:26 +0400)
committerJiri Kosina <jkosina@suse.cz>
Thu, 2 Sep 2010 07:36:11 +0000 (09:36 +0200)
The HID report descriptor parser requires local items, except "delimiters",
to have data. I.e. to have non-zero size. This removes the restriction.

The HID specification doesn't seem to have such restriction and, for
example, a "usage" item could have zero size if the usage ID is zero.
At least one usage page - Keyboard/Keypad lists zero ID as valid.

This doesn't seem to happen in the wild, probably because the official tool
for authoring report descriptors always puts data even for zero values for
some items, including "usage" items.

However, this makes little sense and at least one open source tool for
descriptor authoring generates zero data size "usage" items, which saves
some space, especially if many such items are used in a descriptor.

Signed-off-by: Nikolai Kondrashov <spbnick@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/hid/hid-core.c

index d0240d5e77939ecbac50f862931f5ea8c1f88c8f..fbabe52cbcdc6ee33ffb7bf98a3811b58c99e786 100644 (file)
@@ -388,12 +388,6 @@ static int hid_parser_local(struct hid_parser *parser, struct hid_item *item)
        __u32 data;
        unsigned n;
 
-       /* Local delimiter could have value 0, which allows size to be 0 */
-       if (item->size == 0 && item->tag != HID_LOCAL_ITEM_TAG_DELIMITER) {
-               dbg_hid("item data expected for local item\n");
-               return -1;
-       }
-
        data = item_udata(item);
 
        switch (item->tag) {