mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
HID: hid-sensor-hub: Remove hdev->claimed setting
Current implementation of hid_hw_start() allows connect_mask to be 0. Setting hdev->claimed = HID_CLAIMED_INPUT before calling hid_hw_start() is not necessary. Remove it. Signed-off-by: Axel Lin <axel.lin@gmail.com> Acked-by: Jiri Kosina <jkosina@suse.cz> Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
f0347c36cc
commit
3f257caf2d
@ -530,7 +530,6 @@ static int sensor_hub_probe(struct hid_device *hdev,
|
|||||||
}
|
}
|
||||||
INIT_LIST_HEAD(&hdev->inputs);
|
INIT_LIST_HEAD(&hdev->inputs);
|
||||||
|
|
||||||
hdev->claimed = HID_CLAIMED_INPUT;
|
|
||||||
ret = hid_hw_start(hdev, 0);
|
ret = hid_hw_start(hdev, 0);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
hid_err(hdev, "hw start failed\n");
|
hid_err(hdev, "hw start failed\n");
|
||||||
@ -618,7 +617,6 @@ static void sensor_hub_remove(struct hid_device *hdev)
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
hid_dbg(hdev, " hardware removed\n");
|
hid_dbg(hdev, " hardware removed\n");
|
||||||
hdev->claimed &= ~HID_CLAIMED_INPUT;
|
|
||||||
hid_hw_stop(hdev);
|
hid_hw_stop(hdev);
|
||||||
hid_hw_close(hdev);
|
hid_hw_close(hdev);
|
||||||
spin_lock_irqsave(&data->lock, flags);
|
spin_lock_irqsave(&data->lock, flags);
|
||||||
|
Loading…
Reference in New Issue
Block a user