Commit c1b6a7d7 authored by David Veenstra's avatar David Veenstra Committed by Jonathan Cameron

staging: iio: ad2s1200: Remove unneeded initializations

Remove 2 initializations which are unneeded, because the
initialized values are never used.
Signed-off-by: default avatarDavid Veenstra <davidjulianveenstra@gmail.com>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent c8e97b62
...@@ -47,7 +47,7 @@ static int ad2s1200_read_raw(struct iio_dev *indio_dev, ...@@ -47,7 +47,7 @@ static int ad2s1200_read_raw(struct iio_dev *indio_dev,
long m) long m)
{ {
struct ad2s1200_state *st = iio_priv(indio_dev); struct ad2s1200_state *st = iio_priv(indio_dev);
int ret = 0; int ret;
mutex_lock(&st->lock); mutex_lock(&st->lock);
gpio_set_value(st->sample, 0); gpio_set_value(st->sample, 0);
...@@ -105,7 +105,7 @@ static int ad2s1200_probe(struct spi_device *spi) ...@@ -105,7 +105,7 @@ static int ad2s1200_probe(struct spi_device *spi)
unsigned short *pins = spi->dev.platform_data; unsigned short *pins = spi->dev.platform_data;
struct ad2s1200_state *st; struct ad2s1200_state *st;
struct iio_dev *indio_dev; struct iio_dev *indio_dev;
int pn, ret = 0; int pn, ret;
for (pn = 0; pn < AD2S1200_PN; pn++) { for (pn = 0; pn < AD2S1200_PN; pn++) {
ret = devm_gpio_request_one(&spi->dev, pins[pn], GPIOF_DIR_OUT, ret = devm_gpio_request_one(&spi->dev, pins[pn], GPIOF_DIR_OUT,
......
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