diff options
Diffstat (limited to 'drivers/hid/usbhid/hiddev.c')
| -rw-r--r-- | drivers/hid/usbhid/hiddev.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/hid/usbhid/hiddev.c b/drivers/hid/usbhid/hiddev.c index 87bd64959a9..2f1ddca6f2e 100644 --- a/drivers/hid/usbhid/hiddev.c +++ b/drivers/hid/usbhid/hiddev.c @@ -705,8 +705,8 @@ static long hiddev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)  		if (report == NULL)  			break; -		usbhid_submit_report(hid, report, USB_DIR_IN); -		usbhid_wait_io(hid); +		hid_hw_request(hid, report, HID_REQ_GET_REPORT); +		hid_hw_wait(hid);  		r = 0;  		break; @@ -724,8 +724,8 @@ static long hiddev_ioctl(struct file *file, unsigned int cmd, unsigned long arg)  		if (report == NULL)  			break; -		usbhid_submit_report(hid, report, USB_DIR_OUT); -		usbhid_wait_io(hid); +		hid_hw_request(hid, report, HID_REQ_SET_REPORT); +		hid_hw_wait(hid);  		r = 0;  		break;  |