On Thu, 29 Mar 2018 14:44:42 +0530 Shreeya Patel <shreeya.patel23498@xxxxxxxxx> wrote: > Add a blank line after return statements to improve the code > readability. > > Signed-off-by: Shreeya Patel <shreeya.patel23498@xxxxxxxxx> Applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to play with it. Thanks, Jonathan > --- > > Changes in v6 > -Introduce this new patch in the series. > > drivers/staging/iio/accel/adis16209.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/staging/iio/accel/adis16209.c b/drivers/staging/iio/accel/adis16209.c > index 8f4fa6b..ee7e87b 100644 > --- a/drivers/staging/iio/accel/adis16209.c > +++ b/drivers/staging/iio/accel/adis16209.c > @@ -277,6 +277,7 @@ static int adis16209_probe(struct spi_device *spi) > indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st)); > if (!indio_dev) > return -ENOMEM; > + > st = iio_priv(indio_dev); > spi_set_drvdata(spi, indio_dev); > > @@ -290,6 +291,7 @@ static int adis16209_probe(struct spi_device *spi) > ret = adis_init(st, indio_dev, spi, &adis16209_data); > if (ret) > return ret; > + > ret = adis_setup_buffer_and_trigger(st, indio_dev, NULL); > if (ret) > return ret; -- To unsubscribe from this list: send the line "unsubscribe linux-iio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html