Commit 3516ebc8 authored by Tom Rix's avatar Tom Rix Committed by Jonathan Cameron

iio: pressure: bmp280: remove unneeded semicolon

A semicolon is not needed after a switch statement.
Signed-off-by: default avatarTom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201031134506.2134698-1-trix@redhat.comSigned-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent 3a096c2b
......@@ -13,7 +13,7 @@ static bool bmp180_is_writeable_reg(struct device *dev, unsigned int reg)
return true;
default:
return false;
};
}
}
static bool bmp180_is_volatile_reg(struct device *dev, unsigned int reg)
......@@ -51,7 +51,7 @@ static bool bmp280_is_writeable_reg(struct device *dev, unsigned int reg)
return true;
default:
return false;
};
}
}
static bool bmp280_is_volatile_reg(struct device *dev, unsigned int reg)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment