]> git.karo-electronics.de Git - linux-beck.git/commitdiff
usb: dwc3: gadget: avoid variable shadowing
authorFelipe Balbi <balbi@ti.com>
Tue, 27 Jan 2015 19:24:26 +0000 (13:24 -0600)
committerFelipe Balbi <balbi@ti.com>
Tue, 27 Jan 2015 19:25:09 +0000 (13:25 -0600)
We already have both ret and dwc defined in this
same function.

Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/dwc3/gadget.c

index 6c5e344822b92cc6ba071b6e929e615d0f45550f..944036d4c83d31c0036928842633ee048a525f00 100644 (file)
@@ -1110,15 +1110,10 @@ static int __dwc3_gadget_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req)
         * handled.
         */
        if (dep->stream_capable) {
-               int     ret;
-
                ret = __dwc3_gadget_kick_transfer(dep, 0, true);
-               if (ret && ret != -EBUSY) {
-                       struct dwc3     *dwc = dep->dwc;
-
+               if (ret && ret != -EBUSY)
                        dev_dbg(dwc->dev, "%s: failed to kick transfers\n",
                                        dep->name);
-               }
        }
 
        return 0;