summaryrefslogtreecommitdiffstats
path: root/drivers/usb/dwc3/gadget.c
diff options
context:
space:
mode:
authorFelipe Balbi <felipe.balbi@linux.intel.com>2018-04-06 15:50:29 +0300
committerFelipe Balbi <felipe.balbi@linux.intel.com>2018-05-21 10:00:57 +0300
commitfee73e6144d8a0399d17f9ca3b7e5121057eab2d (patch)
treecb15009b0dc03cbcfe92b14dd007e5105871c530 /drivers/usb/dwc3/gadget.c
parent6afbdb57732bc9617078e9a566eafa5f542a5c28 (diff)
downloadlinux-stable-fee73e6144d8a0399d17f9ca3b7e5121057eab2d.tar.gz
linux-stable-fee73e6144d8a0399d17f9ca3b7e5121057eab2d.tar.bz2
linux-stable-fee73e6144d8a0399d17f9ca3b7e5121057eab2d.zip
usb: dwc3: gadget: reduce scope of ret variable
We can declare it inside list_for_each_entry_safe() loop and reduce its scope. Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Diffstat (limited to 'drivers/usb/dwc3/gadget.c')
-rw-r--r--drivers/usb/dwc3/gadget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
index e230b0a2a2f3..263f9506102f 100644
--- a/drivers/usb/dwc3/gadget.c
+++ b/drivers/usb/dwc3/gadget.c
@@ -2313,10 +2313,10 @@ static void dwc3_gadget_ep_cleanup_completed_requests(struct dwc3_ep *dep,
{
struct dwc3_request *req;
struct dwc3_request *tmp;
- int ret = 0;
list_for_each_entry_safe(req, tmp, &dep->started_list, list) {
unsigned length;
+ int ret;
length = req->request.length;
if (req->num_pending_sgs)