Message ID | 20201027201128.1597230-1-trix@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | iio/adc: ingenic: remove unneeded semicolon | expand |
On Tue, 27 Oct 2020 13:11:28 -0700 trix@redhat.com wrote: > From: Tom Rix <trix@redhat.com> > > A semicolon is not needed after a switch statement. > > Signed-off-by: Tom Rix <trix@redhat.com> Hi Tom, Ideally this set of similar patches in one subsystem would have been as a series. Makes it easier to pick up with b4 and I'm lazy ;) Applied, Thanks, Jonathan > --- > drivers/iio/adc/ingenic-adc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > 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,
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,