From: Benjamin Tissoires Date: Mon, 10 Feb 2014 17:58:55 +0000 (-0500) Subject: HID: wiimote: replace hid_output_raw_report with hid_hw_output_report for output... X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=7e0bc880fce51ba3bd9128b8df9dc59567c5f73a;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git HID: wiimote: replace hid_output_raw_report with hid_hw_output_report for output requests For BT transport layer, ret = hid_output_raw_report(A, B, C, HID_OUTPUT_REPORT); is equivalent to ret = hid_hw_output_report(A, B, C); So use the new API where available Signed-off-by: Benjamin Tissoires Reviewed-by: David Herrmann Signed-off-by: Jiri Kosina --- diff --git a/drivers/hid/hid-wiimote-core.c b/drivers/hid/hid-wiimote-core.c index d7dc6c5bc244..d00391418d1a 100644 --- a/drivers/hid/hid-wiimote-core.c +++ b/drivers/hid/hid-wiimote-core.c @@ -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;