iio: accel: adxl367: Remove second semicolon
authorColin Ian King <colin.i.king@gmail.com>
Fri, 15 Mar 2024 09:14:36 +0000 (09:14 +0000)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Mon, 25 Mar 2024 20:10:14 +0000 (20:10 +0000)
There is a statement with two semicolons. Remove the second one, it
is redundant.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Nuno Sa <nuno.sa@analog.com>
Link: https://lore.kernel.org/r/20240315091436.2430227-1-colin.i.king@gmail.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/accel/adxl367.c

index 210228affb80d317d63f2c98bbd810c40da87f93..5cf4828a5eb5eb71430b0964fbdd2ef4c7ad6ad8 100644 (file)
@@ -621,7 +621,7 @@ static int _adxl367_set_odr(struct adxl367_state *st, enum adxl367_odr odr)
 static int adxl367_set_odr(struct iio_dev *indio_dev, enum adxl367_odr odr)
 {
        iio_device_claim_direct_scoped(return -EBUSY, indio_dev) {
-               struct adxl367_state *st = iio_priv(indio_dev);;
+               struct adxl367_state *st = iio_priv(indio_dev);
                int ret;
 
                guard(mutex)(&st->lock);