4.17-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Ruslan Bilovol <[email protected]>

commit 48b73d0fa11aa8613d51f7be61d2fa7f0ab05fd3 upstream.

No need to do extra endianness conversion in
usb_set_isoch_delay because it is already done
in usb_control_msg()

Fixes: 886ee36e7205 ("usb: core: add support for USB_REQ_SET_ISOCH_DELAY")
Cc: Dmytro Panchenko <[email protected]>
Cc: Felipe Balbi <[email protected]>
Cc: stable <[email protected]> # v4.16+
Signed-off-by: Ruslan Bilovol <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 drivers/usb/core/message.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/usb/core/message.c
+++ b/drivers/usb/core/message.c
@@ -940,7 +940,7 @@ int usb_set_isoch_delay(struct usb_devic
        return usb_control_msg(dev, usb_sndctrlpipe(dev, 0),
                        USB_REQ_SET_ISOCH_DELAY,
                        USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE,
-                       cpu_to_le16(dev->hub_delay), 0, NULL, 0,
+                       dev->hub_delay, 0, NULL, 0,
                        USB_CTRL_SET_TIMEOUT);
 }
 


Reply via email to