From: Benjamin Tissoires Date: Fri, 7 Jan 2011 22:45:11 +0000 (+0100) Subject: HID: set HID_MAX_FIELD at 128 X-Git-Tag: v3.0~2274^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=281054ac8dfc083442c571be44f1c5b9821812ae;p=platform%2Fkernel%2Flinux-amlogic.git HID: set HID_MAX_FIELD at 128 Stantums multitouch panels sends more than 64 reports and this results in not being able to handle all the touches given by this device. This patch is required to be able to include Stantum panels in the unified hid-multitouch driver. Signed-off-by: Benjamin Tissoires Acked-by: Henrik Rydberg Signed-off-by: Jiri Kosina --- diff --git a/include/linux/hid.h b/include/linux/hid.h index 96bd792..1ebc6e3 100644 --- a/include/linux/hid.h +++ b/include/linux/hid.h @@ -402,7 +402,7 @@ struct hid_field { __u16 dpad; /* dpad input code */ }; -#define HID_MAX_FIELDS 64 +#define HID_MAX_FIELDS 128 struct hid_report { struct list_head list;