Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e46e927b authored by Chase Douglas's avatar Chase Douglas Committed by Jiri Kosina
Browse files

HID: bump maximum global item tag report size to 96 bytes

This allows the latest N-Trig devices to function properly.

BugLink: https://bugs.launchpad.net/bugs/724831



Cc: stable@vger.kernel.org
Signed-off-by: default avatarChase Douglas <chase.douglas@canonical.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 8383c6bf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -362,7 +362,7 @@ static int hid_parser_global(struct hid_parser *parser, struct hid_item *item)

	case HID_GLOBAL_ITEM_TAG_REPORT_SIZE:
		parser->global.report_size = item_udata(item);
		if (parser->global.report_size > 32) {
		if (parser->global.report_size > 96) {
			dbg_hid("invalid report_size %d\n",
					parser->global.report_size);
			return -1;