USB: sierra: fix line-control pipe direction
authorJohan Hovold <jhovold@gmail.com>
Mon, 26 May 2014 17:22:58 +0000 (19:22 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 May 2014 22:04:03 +0000 (15:04 -0700)
The sierra line-control request has been using the wrong pipe direction,
while relying on USB core to fix it up.

Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/serial/sierra.c

index 0254f6d..4cb11b7 100644 (file)
@@ -365,7 +365,7 @@ static int sierra_send_setup(struct usb_serial_port *port)
        if (retval < 0)
                return retval;
 
-       retval = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
+       retval = usb_control_msg(serial->dev, usb_sndctrlpipe(serial->dev, 0),
                0x22, 0x21, val, interface, NULL, 0, USB_CTRL_SET_TIMEOUT);
        usb_autopm_put_interface(serial->interface);