iio: adc: remove unused private data assigned with spi_set_drvdata()
authorAlexandru Ardelean <aardelean@deviqon.com>
Thu, 13 May 2021 11:10:35 +0000 (14:10 +0300)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Sun, 13 Jun 2021 16:00:17 +0000 (17:00 +0100)
These were usually used before the conversion to devm_ functions, so that
the remove hook would be able to retrieve the pointer and do cleanups on
remove.
When the conversion happened, they should have been removed, but were
omitted.

Some drivers were copied from drivers that fit the criteria described
above. In any case, in order to prevent more drivers from being used as
example (and have spi_set_drvdata() needlessly set), this change removes it
from the IIO ADC group.

Signed-off-by: Alexandru Ardelean <aardelean@deviqon.com>
Link: https://lore.kernel.org/r/20210513111035.77950-1-aardelean@deviqon.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/adc/ad7476.c
drivers/iio/adc/ad7766.c
drivers/iio/adc/ad7768-1.c
drivers/iio/adc/ad7887.c
drivers/iio/adc/ad9467.c
drivers/iio/adc/hi8435.c
drivers/iio/adc/max1027.c
drivers/iio/adc/max1241.c
drivers/iio/adc/ti-adc084s021.c
drivers/iio/adc/ti-ads124s08.c
drivers/iio/adc/ti-tsc2046.c

index 9d5a71d..a1e8b32 100644 (file)
@@ -389,8 +389,6 @@ static int ad7476_probe(struct spi_device *spi)
        if (IS_ERR(st->convst_gpio))
                return PTR_ERR(st->convst_gpio);
 
-       spi_set_drvdata(spi, indio_dev);
-
        st->spi = spi;
 
        indio_dev->name = spi_get_device_id(spi)->name;
index 9b35c09..51ee948 100644 (file)
@@ -273,8 +273,6 @@ static int ad7766_probe(struct spi_device *spi)
                        return ret;
        }
 
-       spi_set_drvdata(spi, indio_dev);
-
        ad7766->spi = spi;
 
        /* First byte always 0 */
index 4db3b48..2c5c8a3 100644 (file)
@@ -614,7 +614,6 @@ static int ad7768_probe(struct spi_device *spi)
 
        st->mclk_freq = clk_get_rate(st->mclk);
 
-       spi_set_drvdata(spi, indio_dev);
        mutex_init(&st->lock);
 
        indio_dev->channels = ad7768_channels;
index 9b3cbe1..f649997 100644 (file)
@@ -268,7 +268,6 @@ static int ad7887_probe(struct spi_device *spi)
        st->chip_info =
                &ad7887_chip_info_tbl[spi_get_device_id(spi)->driver_data];
 
-       spi_set_drvdata(spi, indio_dev);
        st->spi = spi;
 
        indio_dev->name = spi_get_device_id(spi)->name;
index 19a45dd..dbfc851 100644 (file)
@@ -434,8 +434,6 @@ static int ad9467_probe(struct spi_device *spi)
                mdelay(10);
        }
 
-       spi_set_drvdata(spi, st);
-
        conv->chip_info = &info->axi_adc_info;
 
        id = ad9467_spi_read(spi, AN877_ADC_REG_CHIP_ID);
index 074c309..8b353e2 100644 (file)
@@ -483,7 +483,6 @@ static int hi8435_probe(struct spi_device *spi)
                gpiod_set_value_cansleep(reset_gpio, 1);
        }
 
-       spi_set_drvdata(spi, idev);
        mutex_init(&priv->lock);
 
        idev->name              = spi_get_device_id(spi)->name;
index e3c8ec1..655ab02 100644 (file)
@@ -430,8 +430,6 @@ static int max1027_probe(struct spi_device *spi)
                return -ENOMEM;
        }
 
-       spi_set_drvdata(spi, indio_dev);
-
        st = iio_priv(indio_dev);
        st->spi = spi;
        st->info = &max1027_chip_info_tbl[spi_get_device_id(spi)->driver_data];
index 0cbbb3c..b60f844 100644 (file)
@@ -147,8 +147,6 @@ static int max1241_probe(struct spi_device *spi)
        adc->spi = spi;
        mutex_init(&adc->lock);
 
-       spi_set_drvdata(spi, indio_dev);
-
        adc->vdd = devm_regulator_get(dev, "vdd");
        if (IS_ERR(adc->vdd)) {
                dev_err(dev, "failed to get vdd regulator\n");
index 33aea96..ce3f5a3 100644 (file)
@@ -210,9 +210,6 @@ static int adc084s021_probe(struct spi_device *spi)
        adc = iio_priv(indio_dev);
        adc->spi = spi;
 
-       /* Connect the SPI device and the iio dev */
-       spi_set_drvdata(spi, indio_dev);
-
        /* Initiate the Industrial I/O device */
        indio_dev->name = spi_get_device_id(spi)->name;
        indio_dev->modes = INDIO_DIRECT_MODE;
index b4a128b..17d0da5 100644 (file)
@@ -327,8 +327,6 @@ static int ads124s_probe(struct spi_device *spi)
 
        ads124s_priv->chip_info = &ads124s_chip_info_tbl[spi_id->driver_data];
 
-       spi_set_drvdata(spi, indio_dev);
-
        ads124s_priv->spi = spi;
 
        indio_dev->name = spi_id->name;
index cf5373d..170950d 100644 (file)
@@ -639,8 +639,6 @@ static int tsc2046_adc_probe(struct spi_device *spi)
        priv = iio_priv(indio_dev);
        priv->dcfg = dcfg;
 
-       spi_set_drvdata(spi, indio_dev);
-
        priv->spi = spi;
 
        indio_dev->name = TI_TSC2046_NAME;