commit | 691f453951c4af9a5dd3a4f75f4860b997e73c3a | [log] [tgz] |
---|---|---|
author | Tom Rix <trix@redhat.com> | Tue Oct 27 13:14:36 2020 -0700 |
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | Sat Oct 31 15:02:35 2020 +0000 |
tree | 412f20e989b016bbfe2382c3dcc01471c2dc83ab | |
parent | 675cb4ad1b9e431800bf2ffc49547ca048670257 [diff] [blame] |
iio: light: apds9960: remove unneeded semicolon A semicolon is not needed after a switch statement. Signed-off-by: Tom Rix <trix@redhat.com> Acked-by: Matt Ranostay <matt.ranostay@konsulko.com> Link: https://lore.kernel.org/r/20201027201436.1597726-1-trix@redhat.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
diff --git a/drivers/iio/light/apds9960.c b/drivers/iio/light/apds9960.c index 9afb3fc..547e7f9 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; }