diff options
author | Tom Rix <trix@redhat.com> | 2020-10-27 21:11:28 +0100 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2020-10-31 16:02:35 +0100 |
commit | 4a6261c36da770369a7383c2455d54addb1a7c36 (patch) | |
tree | 4a2758f8f7692f2cee365d09fe2ea5cc20a2fb41 /drivers/iio/adc | |
parent | iio: light: apds9960: remove unneeded semicolon (diff) | |
download | linux-4a6261c36da770369a7383c2455d54addb1a7c36.tar.xz linux-4a6261c36da770369a7383c2455d54addb1a7c36.zip |
iio/adc: ingenic: remove unneeded semicolon
A semicolon is not needed after a switch statement.
Signed-off-by: Tom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201027201128.1597230-1-trix@redhat.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/adc')
-rw-r--r-- | drivers/iio/adc/ingenic-adc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/adc/ingenic-adc.c b/drivers/iio/adc/ingenic-adc.c index 92b25083e23f..7886cdca5a5e 100644 --- a/drivers/iio/adc/ingenic-adc.c +++ b/drivers/iio/adc/ingenic-adc.c @@ -542,7 +542,7 @@ static int ingenic_adc_read_avail(struct iio_dev *iio_dev, return IIO_AVAIL_LIST; default: return -EINVAL; - }; + } } static int ingenic_adc_read_chan_info_raw(struct iio_dev *iio_dev, |