]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
USB: wusbcore: fix control-pipe directions
authorJohan Hovold <jhovold@gmail.com>
Mon, 26 May 2014 17:23:52 +0000 (19:23 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 May 2014 22:04:10 +0000 (15:04 -0700)
Fix incorrect pipe directions in control requests (which has been
silently fixed up by USB core).

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

index 6d6da127f6de0578361eac94a11f841254d283cd..a80c5d284b5902621b2d1d7b8bc2b5309d2dc25a 100644 (file)
@@ -524,7 +524,7 @@ void rpipe_ep_disable(struct wahc *wa, struct usb_host_endpoint *ep)
                u16 index = le16_to_cpu(rpipe->descr.wRPipeIndex);
 
                usb_control_msg(
-                       wa->usb_dev, usb_rcvctrlpipe(wa->usb_dev, 0),
+                       wa->usb_dev, usb_sndctrlpipe(wa->usb_dev, 0),
                        USB_REQ_RPIPE_ABORT,
                        USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_RPIPE,
                        0, index, NULL, 0, USB_CTRL_SET_TIMEOUT);
@@ -545,7 +545,7 @@ void rpipe_clear_feature_stalled(struct wahc *wa, struct usb_host_endpoint *ep)
                u16 index = le16_to_cpu(rpipe->descr.wRPipeIndex);
 
                usb_control_msg(
-                       wa->usb_dev, usb_rcvctrlpipe(wa->usb_dev, 0),
+                       wa->usb_dev, usb_sndctrlpipe(wa->usb_dev, 0),
                        USB_REQ_CLEAR_FEATURE,
                        USB_DIR_OUT | USB_TYPE_CLASS | USB_RECIP_RPIPE,
                        RPIPE_STALL, index, NULL, 0, USB_CTRL_SET_TIMEOUT);