From: Tom Rix Date: Tue, 27 Oct 2020 20:14:36 +0000 (-0700) Subject: iio: light: apds9960: remove unneeded semicolon X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=691f453951c4af9a5dd3a4f75f4860b997e73c3a;p=linux.git iio: light: apds9960: remove unneeded semicolon A semicolon is not needed after a switch statement. Signed-off-by: Tom Rix Acked-by: Matt Ranostay Link: https://lore.kernel.org/r/20201027201436.1597726-1-trix@redhat.com Signed-off-by: Jonathan Cameron --- diff --git a/drivers/iio/light/apds9960.c b/drivers/iio/light/apds9960.c index 9afb3fcc74e62..547e7f9d69203 100644 --- a/drivers/iio/light/apds9960.c +++ b/drivers/iio/light/apds9960.c @@ -561,7 +561,7 @@ static int apds9960_write_raw(struct iio_dev *indio_dev, } default: return -EINVAL; - }; + } return 0; }