Skip to content

Commit 46d2c20

Browse files
YueHaibinggregkh
authored andcommitted
usb: gadget: fsl_qe_udc: Add missing semicolon in qe_ep_dequeue()
drivers/usb/gadget/udc/fsl_qe_udc.c: In function ‘qe_ep_dequeue’: drivers/usb/gadget/udc/fsl_qe_udc.c:1792:3: error: expected ‘;’ before ‘req’ req = iter; ^~~ Add missing semicolon to fix this. Fixes: 8388841 ("usb: gadget: fsl: remove usage of list iterator past the loop body") Signed-off-by: YueHaibing <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent ac48400 commit 46d2c20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/usb/gadget/udc/fsl_qe_udc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1788,7 +1788,7 @@ static int qe_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
17881788
/* make sure it's actually queued on this endpoint */
17891789
list_for_each_entry(iter, &ep->queue, queue) {
17901790
if (&iter->req != _req)
1791-
continue
1791+
continue;
17921792
req = iter;
17931793
break;
17941794
}

0 commit comments

Comments
 (0)