diff options
author | Paul Chavent | 2013-07-07 17:43:56 +0200 |
---|---|---|
committer | Jiri Kosina | 2013-07-13 00:19:50 +0200 |
commit | 38ead6ef1d94e782bec49002ff65f2bdaddfeb15 (patch) | |
tree | a7d1016323a3359fe46da60befcaee5ea4d3876c /drivers/hid | |
parent | 3366dd9fa887ebbda4872e9554f853eaeda764be (diff) |
HID: core: fix hid delimiter local tag parsing.
When device with the DELIMITER tag in its report descriptor is encountered
during parsing, it's mistakenly immediately refused by HID core for no
justifiable reason.
[jkosina@suse.cz: polish changelog]
Signed-off-by: Paul Chavent <paul.chavent@onera.fr>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/hid-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c index e39dac68063c..8de5cb8319b9 100644 --- a/drivers/hid/hid-core.c +++ b/drivers/hid/hid-core.c @@ -450,7 +450,7 @@ static int hid_parser_local(struct hid_parser *parser, struct hid_item *item) } parser->local.delimiter_depth--; } - return 1; + return 0; case HID_LOCAL_ITEM_TAG_USAGE: |