mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 19:41:54 +00:00
HID: remove self-assignment from hid_input_report
The ternary expression will always result in a self-assignment, which is pointless. Signed-off-by: Felix Rueegg <felix.rueegg@gmail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
d4b1bba761
commit
556483e2ad
@ -1417,11 +1417,9 @@ 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)) {
|
||||
ret = hdrv->raw_event(hid, report, data, size);
|
||||
if (ret < 0) {
|
||||
ret = ret < 0 ? ret : 0;
|
||||
if (ret < 0)
|
||||
goto unlock;
|
||||
}
|
||||
}
|
||||
|
||||
ret = hid_report_raw_event(hid, type, data, size, interrupt);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user