OSDN Git Service

mmc: mmc_spi: Remove redundant dev_set_drvdata()
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Wed, 27 Mar 2019 18:01:06 +0000 (20:01 +0200)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 15 Apr 2019 09:55:54 +0000 (11:55 +0200)
Driver core sets it to NULL upon probe failure or release.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/mmc/host/mmc_spi.c

index a353393..36baa9e 100644 (file)
@@ -1489,7 +1489,6 @@ fail_ones_dma:
 fail_nobuf1:
        mmc_free_host(mmc);
        mmc_spi_put_pdata(spi);
-       dev_set_drvdata(&spi->dev, NULL);
 
 nomem:
        kfree(ones);
@@ -1524,7 +1523,6 @@ static int mmc_spi_remove(struct spi_device *spi)
                spi->max_speed_hz = mmc->f_max;
                mmc_free_host(mmc);
                mmc_spi_put_pdata(spi);
-               dev_set_drvdata(&spi->dev, NULL);
        }
        return 0;
 }