From: Colin Ian King Date: Thu, 17 Jun 2021 11:26:38 +0000 (+0100) Subject: USB: UDC: net2280: remove redundant continue statement X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=73f3d9453dfda055aff6e5ffde37f7ee625c3f38;p=linux.git USB: UDC: net2280: remove redundant continue statement The continue statement at the end of a for-loop has no effect, remove it. Signed-off-by: Colin Ian King Addresses-Coverity: ("Continue has no effect") Link: https://lore.kernel.org/r/20210617112638.9072-1-colin.king@canonical.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/gadget/udc/net2280.c b/drivers/usb/gadget/udc/net2280.c index 0e0458e3662bf..16e7d2db6411b 100644 --- a/drivers/usb/gadget/udc/net2280.c +++ b/drivers/usb/gadget/udc/net2280.c @@ -2825,8 +2825,6 @@ static void defect7374_workaround(struct net2280 *dev, struct usb_ctrlrequest r) * - Wait and try again. */ udelay(DEFECT_7374_PROCESSOR_WAIT_TIME); - - continue; }