Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

iio: light: si1145: remove redundant continue statement

The continue statement at the end of a for-loop has no effect,
remove it.

Addresses-Coverity: ("Continue has no effect")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20210617081312.151746-1-colin.king@canonical.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>

authored by

Colin Ian King and committed by
Jonathan Cameron
b44ab6fd 13efdc3d

-1
-1
drivers/iio/light/si1145.c
··· 220 220 return -ETIMEDOUT; 221 221 } 222 222 msleep(SI1145_COMMAND_MINSLEEP_MS); 223 - continue; 224 223 } 225 224 } 226 225