From: Subbaraya Sundeep Bhatta Date: Thu, 21 May 2015 10:16:48 +0000 (+0530) Subject: usb: dwc3: gadget: return error if command sent to DEPCMD register fails X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=da5a2307a885e0d24b85bfc41078e7288b731b27;p=GitHub%2FLineageOS%2Fandroid_kernel_samsung_universal7580.git usb: dwc3: gadget: return error if command sent to DEPCMD register fails commit 76e838c9f7765f9a6205b4d558d75a66104bc60d upstream. We need to return error to caller if command is not sent to controller succesfully. Signed-off-by: Subbaraya Sundeep Bhatta Fixes: 72246da40f37 (usb: Introduce DesignWare USB3 DRD Driver) Signed-off-by: Felipe Balbi Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c index 7b3dec0b2a7..f47c5d87e81 100644 --- a/drivers/usb/dwc3/gadget.c +++ b/drivers/usb/dwc3/gadget.c @@ -343,6 +343,8 @@ int dwc3_send_gadget_ep_cmd(struct dwc3 *dwc, unsigned ep, if (!(reg & DWC3_DEPCMD_CMDACT)) { dev_vdbg(dwc->dev, "Command Complete --> %d\n", DWC3_DEPCMD_STATUS(reg)); + if (DWC3_DEPCMD_STATUS(reg)) + return -EINVAL; return 0; }