staging: iio: ad2s1210: fix 'assignment operator' style checks
authorMatheus Tavares <matheus.bernardino@usp.br>
Mon, 8 Oct 2018 03:29:38 +0000 (00:29 -0300)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Mon, 8 Oct 2018 20:20:55 +0000 (21:20 +0100)
This patch fixes all "Assignment operator '=' should be on the previous
line" checks found in ad2s1210.c with checkpatch.pl.

Signed-off-by: Matheus Tavares <matheus.bernardino@usp.br>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/staging/iio/resolver/ad2s1210.c

index ac13b99..d4b1c2c 100644 (file)
@@ -301,8 +301,8 @@ static ssize_t ad2s1210_store_control(struct device *dev,
                        "ad2s1210: write control register fail\n");
                goto error_ret;
        }
-       st->resolution
-               ad2s1210_resolution_value[data & AD2S1210_SET_RESOLUTION];
+       st->resolution =
+               ad2s1210_resolution_value[data & AD2S1210_SET_RESOLUTION];
        if (st->pdata->gpioin) {
                data = ad2s1210_read_resolution_pin(st);
                if (data != st->resolution)
@@ -363,8 +363,8 @@ static ssize_t ad2s1210_store_resolution(struct device *dev,
                dev_err(dev, "ad2s1210: setting resolution fail\n");
                goto error_ret;
        }
-       st->resolution
-               ad2s1210_resolution_value[data & AD2S1210_SET_RESOLUTION];
+       st->resolution =
+               ad2s1210_resolution_value[data & AD2S1210_SET_RESOLUTION];
        if (st->pdata->gpioin) {
                data = ad2s1210_read_resolution_pin(st);
                if (data != st->resolution)