Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e3bbe875 authored by Alan Cox's avatar Alan Cox Committed by Jiri Kosina
Browse files

HID: sensor-hub: Remove pointless NULL check



report cannot be NULL, fortunately as we use it before we check !

Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent d339f61d
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -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;
}