HID: wiimote: replace hid_output_raw_report with hid_hw_output_report for output...
[deliverable/linux.git] / drivers / hid / hid-wiimote-core.c
index d7dc6c5bc244caaf090677a647d686a3921ec2a9..d00391418d1ae307ad1ceead4ca39e289a04dfac 100644 (file)
@@ -28,14 +28,14 @@ static int wiimote_hid_send(struct hid_device *hdev, __u8 *buffer,
        __u8 *buf;
        int ret;
 
-       if (!hdev->hid_output_raw_report)
+       if (!hdev->ll_driver->output_report)
                return -ENODEV;
 
        buf = kmemdup(buffer, count, GFP_KERNEL);
        if (!buf)
                return -ENOMEM;
 
-       ret = hid_output_raw_report(hdev, buf, count, HID_OUTPUT_REPORT);
+       ret = hid_hw_output_report(hdev, buf, count);
 
        kfree(buf);
        return ret;
This page took 0.034203 seconds and 5 git commands to generate.