From: Felipe Balbi Date: Wed, 31 Aug 2011 08:51:43 +0000 (+0300) Subject: usb: dwc3: ep0: fix Get Status handling X-Git-Tag: v3.2-rc1~183^2~148^2~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b673cf3002bfded05d68c8bad394ee68f5e8c515;p=profile%2Fivi%2Fkernel-x86-ivi.git usb: dwc3: ep0: fix Get Status handling data was prepared on setup_buf but transfer was started on ctrl_req, fix it. Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/dwc3/ep0.c b/drivers/usb/dwc3/ep0.c index 82a40a1..6745d14 100644 --- a/drivers/usb/dwc3/ep0.c +++ b/drivers/usb/dwc3/ep0.c @@ -249,7 +249,7 @@ static struct dwc3_ep *dwc3_wIndex_to_dep(struct dwc3 *dwc, __le16 wIndex_le) static void dwc3_ep0_send_status_response(struct dwc3 *dwc) { - dwc3_ep0_start_trans(dwc, 1, dwc->ctrl_req_addr, + dwc3_ep0_start_trans(dwc, 1, dwc->setup_buf_addr, dwc->ep0_usb_req.length, DWC3_TRBCTL_CONTROL_DATA); dwc->ep0_status_pending = 1;