diff options
author | Benjamin Tissoires <benjamin.tissoires@redhat.com> | 2014-02-21 00:24:49 +0400 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2014-02-24 20:23:15 +0400 |
commit | 3c86726cfe38952f0366f86acfbbb025813ec1c2 (patch) | |
tree | 74192839f11f698ee74ea55b4c17717e4c1bffba /drivers/hid/hid-input.c | |
parent | 2ebaebcf31096f83401c850393e93bc8f28db0e9 (diff) | |
download | linux-3c86726cfe38952f0366f86acfbbb025813ec1c2.tar.xz |
HID: make .raw_request mandatory
SET_REPORT and GET_REPORT are mandatory in the HID specification.
Make the corresponding API in hid-core mandatory too, which removes the
need to test against it in some various places.
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Reviewed-by: David Herrmann <dh.herrmann@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-input.c')
-rw-r--r-- | drivers/hid/hid-input.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/hid/hid-input.c b/drivers/hid/hid-input.c index 310b96779e8e..f5aef792f13b 100644 --- a/drivers/hid/hid-input.c +++ b/drivers/hid/hid-input.c @@ -1266,9 +1266,7 @@ static struct hid_input *hidinput_allocate(struct hid_device *hid) } input_set_drvdata(input_dev, hid); - if (hid->ll_driver->request || hid->ll_driver->output_report || - hid->ll_driver->raw_request) - input_dev->event = hidinput_input_event; + input_dev->event = hidinput_input_event; input_dev->open = hidinput_open; input_dev->close = hidinput_close; input_dev->setkeycode = hidinput_setkeycode; |