Prechádzať zdrojové kódy

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>
Felipe Balbi 7 rokov pred
rodič
commit
fee73e6144
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      drivers/usb/dwc3/gadget.c

+ 1 - 1
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)