summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorKenneth Kwak <kkwak@nvidia.com>2014-06-24 21:21:50 -0700
committerPeter Kim <pekim@nvidia.com>2014-06-25 19:11:53 -0700
commit0e2140a46934e2c8a5ceb4c58c236252925fa046 (patch)
tree323827dd6914aaa0dd7ab3f1a416fe4f8b616cfb /drivers
parenta3ed1fae3af45fc85b96ff2a4180977482c8235b (diff)
Revert "HID: Extend the interface with report requests"
DO NOT INTEGRATE Bug 1466757 This reverts commit 2a698014d1e170b736237ad7f7caf046295c413b. Change-Id: Ib68e1c3c9ff3c6f2e75a27741b1a197fceb38d20 Signed-off-by: Kenneth Kwak <kkwak@nvidia.com> Reviewed-on: http://git-master/r/428063 Reviewed-by: Peter Kim <pekim@nvidia.com> Tested-by: Peter Kim <pekim@nvidia.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/hid/usbhid/hid-core.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/drivers/hid/usbhid/hid-core.c b/drivers/hid/usbhid/hid-core.c
index ec70dd25ba59..f03401947718 100644
--- a/drivers/hid/usbhid/hid-core.c
+++ b/drivers/hid/usbhid/hid-core.c
@@ -1242,18 +1242,6 @@ static int usbhid_power(struct hid_device *hid, int lvl)
return r;
}
-static void usbhid_request(struct hid_device *hid, struct hid_report *rep, int reqtype)
-{
- switch (reqtype) {
- case HID_REQ_GET_REPORT:
- usbhid_submit_report(hid, rep, USB_DIR_IN);
- break;
- case HID_REQ_SET_REPORT:
- usbhid_submit_report(hid, rep, USB_DIR_OUT);
- break;
- }
-}
-
static struct hid_ll_driver usb_hid_driver = {
.parse = usbhid_parse,
.start = usbhid_start,
@@ -1262,7 +1250,6 @@ static struct hid_ll_driver usb_hid_driver = {
.close = usbhid_close,
.power = usbhid_power,
.hidinput_input_event = usb_hidinput_input_event,
- .request = usbhid_request,
};
static int usbhid_probe(struct usb_interface *intf, const struct usb_device_id *id)