|
@@ -774,7 +774,8 @@ static int hid_alloc_buffers(struct usb_device *dev, struct hid_device *hid)
|
|
return 0;
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
|
|
-static int usbhid_output_raw_report(struct hid_device *hid, __u8 *buf, size_t count)
|
|
|
|
|
|
+static int usbhid_output_raw_report(struct hid_device *hid, __u8 *buf, size_t count,
|
|
|
|
+ unsigned char report_type)
|
|
{
|
|
{
|
|
struct usbhid_device *usbhid = hid->driver_data;
|
|
struct usbhid_device *usbhid = hid->driver_data;
|
|
struct usb_device *dev = hid_to_usb_dev(hid);
|
|
struct usb_device *dev = hid_to_usb_dev(hid);
|
|
@@ -785,7 +786,7 @@ static int usbhid_output_raw_report(struct hid_device *hid, __u8 *buf, size_t co
|
|
ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
|
|
ret = usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
|
|
HID_REQ_SET_REPORT,
|
|
HID_REQ_SET_REPORT,
|
|
USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
|
|
USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_INTERFACE,
|
|
- ((HID_OUTPUT_REPORT + 1) << 8) | *buf,
|
|
|
|
|
|
+ ((report_type + 1) << 8) | *buf,
|
|
interface->desc.bInterfaceNumber, buf + 1, count - 1,
|
|
interface->desc.bInterfaceNumber, buf + 1, count - 1,
|
|
USB_CTRL_SET_TIMEOUT);
|
|
USB_CTRL_SET_TIMEOUT);
|
|
|
|
|