iio: adc: at91-sama5d2_adc: remove unneeded semicolon
authorTom Rix <trix@redhat.com>
Tue, 27 Oct 2020 20:08:53 +0000 (13:08 -0700)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sat, 31 Oct 2020 15:02:36 +0000 (15:02 +0000)
A semicolon is not needed after a switch statement.

Signed-off-by: Tom Rix <trix@redhat.com>
Link: https://lore.kernel.org/r/20201027200853.1596699-1-trix@redhat.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/adc/at91-sama5d2_adc.c

index b917a47..56cb9a8 100644 (file)
@@ -1472,7 +1472,7 @@ static int at91_adc_write_raw(struct iio_dev *indio_dev,
                return 0;
        default:
                return -EINVAL;
-       };
+       }
 }
 
 static void at91_adc_dma_init(struct platform_device *pdev)