Lines 290-297
static int hid_add_field(struct hid_pars
Link Here
|
290 |
|
290 |
|
291 |
/* Total size check: Allow for possible report index byte */ |
291 |
/* Total size check: Allow for possible report index byte */ |
292 |
if (report->size > (HID_MAX_BUFFER_SIZE - 1) << 3) { |
292 |
if (report->size > (HID_MAX_BUFFER_SIZE - 1) << 3) { |
293 |
hid_err(parser->device, "report is too long\n"); |
293 |
hid_err(parser->device, |
294 |
return -1; |
294 |
"report is too long: %d > %d\n", |
|
|
295 |
report->size, |
296 |
(HID_MAX_BUFFER_SIZE - 1) << 3); |
297 |
return 0; |
295 |
} |
298 |
} |
296 |
|
299 |
|
297 |
if (!parser->local.usage_index) /* Ignore padding fields */ |
300 |
if (!parser->local.usage_index) /* Ignore padding fields */ |