forked from Minki/linux
HID: sensor-hub: Remove pointless NULL check
report cannot be NULL, fortunately as we use it before we check ! Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
parent
d339f61d14
commit
e3bbe8755c
@ -437,9 +437,6 @@ static int sensor_hub_raw_event(struct hid_device *hdev,
|
||||
ptr = raw_data;
|
||||
ptr++; /*Skip report id*/
|
||||
|
||||
if (!report)
|
||||
goto err_report;
|
||||
|
||||
spin_lock_irqsave(&pdata->lock, flags);
|
||||
|
||||
for (i = 0; i < report->maxfield; ++i) {
|
||||
@ -485,7 +482,6 @@ static int sensor_hub_raw_event(struct hid_device *hdev,
|
||||
callback->pdev);
|
||||
spin_unlock_irqrestore(&pdata->lock, flags);
|
||||
|
||||
err_report:
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user