From: Colin Ian King Date: Mon, 21 Jun 2021 09:55:45 +0000 (+0100) Subject: usb: ftdi-elan: remove redundant continue statement in a while-loop X-Git-Tag: v5.14-rc1~64^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=269072a3d9073aa975f4f16bdfd828c6ab15e755;p=thirdparty%2Flinux.git usb: ftdi-elan: remove redundant continue statement in a while-loop The continue statement at the end of the while-loop is redundant, remove it. Signed-off-by: Colin Ian King Addresses-Coverity: ("Continue has no effect") Link: https://lore.kernel.org/r/20210621095545.9659-1-colin.king@canonical.com Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/misc/ftdi-elan.c b/drivers/usb/misc/ftdi-elan.c index 8a3d9c0c8d8bc..e5a8fcdbb78e7 100644 --- a/drivers/usb/misc/ftdi-elan.c +++ b/drivers/usb/misc/ftdi-elan.c @@ -2098,7 +2098,6 @@ more:{ } else d += sprintf(d, " .."); bytes_read += 1; - continue; } goto more; } else if (packet_bytes > 1) {