diff options
Diffstat (limited to 'drivers/hid/hid-sensor-hub.c')
-rw-r--r-- | drivers/hid/hid-sensor-hub.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/hid/hid-sensor-hub.c b/drivers/hid/hid-sensor-hub.c index 59d29f853ac0..ca7498107327 100644 --- a/drivers/hid/hid-sensor-hub.c +++ b/drivers/hid/hid-sensor-hub.c | |||
@@ -18,7 +18,6 @@ | |||
18 | */ | 18 | */ |
19 | #include <linux/device.h> | 19 | #include <linux/device.h> |
20 | #include <linux/hid.h> | 20 | #include <linux/hid.h> |
21 | #include "usbhid/usbhid.h" | ||
22 | #include <linux/module.h> | 21 | #include <linux/module.h> |
23 | #include <linux/slab.h> | 22 | #include <linux/slab.h> |
24 | #include <linux/mfd/core.h> | 23 | #include <linux/mfd/core.h> |
@@ -204,7 +203,7 @@ int sensor_hub_set_feature(struct hid_sensor_hub_device *hsdev, u32 report_id, | |||
204 | } | 203 | } |
205 | hid_set_field(report->field[field_index], 0, value); | 204 | hid_set_field(report->field[field_index], 0, value); |
206 | hid_hw_request(hsdev->hdev, report, HID_REQ_SET_REPORT); | 205 | hid_hw_request(hsdev->hdev, report, HID_REQ_SET_REPORT); |
207 | usbhid_wait_io(hsdev->hdev); | 206 | hid_hw_wait(hsdev->hdev); |
208 | 207 | ||
209 | done_proc: | 208 | done_proc: |
210 | mutex_unlock(&data->mutex); | 209 | mutex_unlock(&data->mutex); |
@@ -227,7 +226,7 @@ int sensor_hub_get_feature(struct hid_sensor_hub_device *hsdev, u32 report_id, | |||
227 | goto done_proc; | 226 | goto done_proc; |
228 | } | 227 | } |
229 | hid_hw_request(hsdev->hdev, report, HID_REQ_GET_REPORT); | 228 | hid_hw_request(hsdev->hdev, report, HID_REQ_GET_REPORT); |
230 | usbhid_wait_io(hsdev->hdev); | 229 | hid_hw_wait(hsdev->hdev); |
231 | *value = report->field[field_index]->value[0]; | 230 | *value = report->field[field_index]->value[0]; |
232 | 231 | ||
233 | done_proc: | 232 | done_proc: |