Commit 12007258 authored by Vojtech Pavlik's avatar Vojtech Pavlik

input: Add a missing ';' to hid-core.c

Signed-off-by: default avatarVojtech Pavlik <vojtech@suse.cz>
parent 0d67e728
......@@ -233,7 +233,7 @@ static int hid_add_field(struct hid_parser *parser, unsigned report_type, unsign
if (!parser->local.usage_index) /* Ignore padding fields */
return 0;
usages = max_t(int, parser->local.usage_index, parser->global.report_count)
usages = max_t(int, parser->local.usage_index, parser->global.report_count);
if ((field = hid_register_field(report, usages, parser->global.report_count)) == NULL)
return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment