On Sat, 31 Oct 2020 06:43:19 -0700 [email protected] wrote: > From: Tom Rix <[email protected]> > > A semicolon is not needed after a switch statement. > > Signed-off-by: Tom Rix <[email protected]> Applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to poke at it.
Thanks, Jonathan > --- > drivers/iio/magnetometer/bmc150_magn.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/iio/magnetometer/bmc150_magn.c > b/drivers/iio/magnetometer/bmc150_magn.c > index fc6840f9c1fa..73e55ec815ec 100644 > --- a/drivers/iio/magnetometer/bmc150_magn.c > +++ b/drivers/iio/magnetometer/bmc150_magn.c > @@ -190,7 +190,7 @@ static bool bmc150_magn_is_writeable_reg(struct device > *dev, unsigned int reg) > return true; > default: > return false; > - }; > + } > } > > static bool bmc150_magn_is_volatile_reg(struct device *dev, unsigned int reg)

