aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Tissoires <benjamin.tissoires@redhat.com>2014-02-20 15:24:50 -0500
committerJiri Kosina <jkosina@suse.cz>2014-02-24 11:23:15 -0500
commit3a75b24949a8d34d2014866006e30dc69dd567c8 (patch)
tree07bfa020997b5a9e6f7426422e24295657aea181
parent3c86726cfe38952f0366f86acfbbb025813ec1c2 (diff)
HID: hidraw: replace hid_output_raw_report() calls by appropriates ones
Remove hid_output_raw_report() call as it is not a ll_driver callbacj, and switch to the hid_hw_* implementation. USB-HID used to fallback into SET_REPORT when there were no output interrupt endpoint, so emulating this if hid_hw_output_report() returns -ENOSYS. Reviewed-by: David Herrmann <dh.herrmann@gmail.com> Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r--drivers/hid/hidraw.c19
1 files changed, 14 insertions, 5 deletions
diff --git a/drivers/hid/hidraw.c b/drivers/hid/hidraw.c
index f8708c93f85c..2cc484c0017b 100644
--- a/drivers/hid/hidraw.c
+++ b/drivers/hid/hidraw.c
@@ -123,10 +123,6 @@ static ssize_t hidraw_send_report(struct file *file, const char __user *buffer,
123 123
124 dev = hidraw_table[minor]->hid; 124 dev = hidraw_table[minor]->hid;
125 125
126 if (!dev->hid_output_raw_report) {
127 ret = -ENODEV;
128 goto out;
129 }
130 126
131 if (count > HID_MAX_BUFFER_SIZE) { 127 if (count > HID_MAX_BUFFER_SIZE) {
132 hid_warn(dev, "pid %d passed too large report\n", 128 hid_warn(dev, "pid %d passed too large report\n",
@@ -153,7 +149,20 @@ static ssize_t hidraw_send_report(struct file *file, const char __user *buffer,
153 goto out_free; 149 goto out_free;
154 } 150 }
155 151
156 ret = hid_output_raw_report(dev, buf, count, report_type); 152 if (report_type == HID_OUTPUT_REPORT) {
153 ret = hid_hw_output_report(dev, buf, count);
154 /*
155 * compatibility with old implementation of USB-HID and I2C-HID:
156 * if the device does not support receiving output reports,
157 * on an interrupt endpoint, fallback to SET_REPORT HID command.
158 */
159 if (ret != -ENOSYS)
160 goto out_free;
161 }
162
163 ret = hid_hw_raw_request(dev, buf[0], buf, count, report_type,
164 HID_REQ_SET_REPORT);
165
157out_free: 166out_free:
158 kfree(buf); 167 kfree(buf);
159out: 168out: