HID: picolcd: be more verbose when reporting report size error
picolcd device is not expected to send any report with size larger than 64 bytes. If this impossible event happens (sic!), print also a report ID to allow for easier debugging. Suggested-by: Bruno Prémont <bonbons@linux-vserver.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
ff0c57ac70
commit
604b607748
|
@ -351,8 +351,8 @@ static int picolcd_raw_event(struct hid_device *hdev,
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
if (size > 64) {
|
if (size > 64) {
|
||||||
hid_warn(hdev, "invalid size value (%d) for picolcd raw event\n",
|
hid_warn(hdev, "invalid size value (%d) for picolcd raw event (%d)\n",
|
||||||
size);
|
size, report->id);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue