Commit 556483e2 authored by Felix Rueegg's avatar Felix Rueegg Committed by Jiri Kosina

HID: remove self-assignment from hid_input_report

The ternary expression will always result in a self-assignment, which is
pointless.
Signed-off-by: default avatarFelix Rueegg <felix.rueegg@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent d4b1bba7
...@@ -1417,10 +1417,8 @@ int hid_input_report(struct hid_device *hid, int type, u8 *data, int size, int i ...@@ -1417,10 +1417,8 @@ int hid_input_report(struct hid_device *hid, int type, u8 *data, int size, int i
if (hdrv && hdrv->raw_event && hid_match_report(hid, report)) { if (hdrv && hdrv->raw_event && hid_match_report(hid, report)) {
ret = hdrv->raw_event(hid, report, data, size); ret = hdrv->raw_event(hid, report, data, size);
if (ret < 0) { if (ret < 0)
ret = ret < 0 ? ret : 0;
goto unlock; goto unlock;
}
} }
ret = hid_report_raw_event(hid, type, data, size, interrupt); ret = hid_report_raw_event(hid, type, data, size, interrupt);
......
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