diff options
author | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2019-10-13 19:10:13 +0100 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2019-10-18 20:04:26 +0100 |
commit | 49d3faba7e36115d269691bf701dd394ade4f8b8 (patch) | |
tree | caac861ab501f91d0f8c0613bddc5b79b68e40de /drivers/iio/temperature | |
parent | 0e643753829341d8df1b6df64fb2d54491f97223 (diff) | |
download | lwn-49d3faba7e36115d269691bf701dd394ade4f8b8.tar.gz lwn-49d3faba7e36115d269691bf701dd394ade4f8b8.zip |
iio: temp: maxim thermocouple: Drop unneeded semi colon.
Identified by coccinelle
CHECK drivers/iio/temperature/maxim_thermocouple.c
drivers/iio/temperature/maxim_thermocouple.c:197:3-4: Unneeded semicolon
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Acked-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'drivers/iio/temperature')
-rw-r--r-- | drivers/iio/temperature/maxim_thermocouple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/temperature/maxim_thermocouple.c b/drivers/iio/temperature/maxim_thermocouple.c index 2ab68282d0b6..d1360605209c 100644 --- a/drivers/iio/temperature/maxim_thermocouple.c +++ b/drivers/iio/temperature/maxim_thermocouple.c @@ -194,7 +194,7 @@ static int maxim_thermocouple_read_raw(struct iio_dev *indio_dev, default: *val = 250; /* 1000 * 0.25 */ ret = IIO_VAL_INT; - }; + } break; } |