diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2019-03-27 19:01:06 +0100 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2019-04-15 11:55:54 +0200 |
commit | b9ffe4086206d1aedb3c7e62249e84beefdc2bca (patch) | |
tree | 82d9fc6cd480745bbb24b63dd2be9fd2efa4fe7c /drivers/mmc/host/mmc_spi.c | |
parent | mmc: mmci: replace blksz_datactrlXX by get_datactrl_cfg callback (diff) | |
download | linux-b9ffe4086206d1aedb3c7e62249e84beefdc2bca.tar.xz linux-b9ffe4086206d1aedb3c7e62249e84beefdc2bca.zip |
mmc: mmc_spi: Remove redundant dev_set_drvdata()
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>
Diffstat (limited to 'drivers/mmc/host/mmc_spi.c')
-rw-r--r-- | drivers/mmc/host/mmc_spi.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/mmc/host/mmc_spi.c b/drivers/mmc/host/mmc_spi.c index a3533935e282..36baa9e88648 100644 --- a/drivers/mmc/host/mmc_spi.c +++ b/drivers/mmc/host/mmc_spi.c @@ -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; } |