From: Colin Ian King Date: Fri, 18 Jun 2021 09:04:47 +0000 (+0100) Subject: xhci: remove redundant continue statement X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ab37ac690ed08c5f41723f2143e3b9e682f031e6;p=linux.git xhci: 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") Cc: Mathias Nyman Link: https://lore.kernel.org/r/20210618090447.99114-1-colin.king@canonical.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c index 9248ce8d09a4a..3618070eba786 100644 --- a/drivers/usb/host/xhci.c +++ b/drivers/usb/host/xhci.c @@ -4845,7 +4845,6 @@ static int xhci_update_timeout_for_interface(struct xhci_hcd *xhci, if (xhci_update_timeout_for_endpoint(xhci, udev, &alt->endpoint[j].desc, state, timeout)) return -E2BIG; - continue; } return 0; }