aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/mmc_spi.c
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2019-03-27 20:01:06 +0200
committerUlf Hansson <ulf.hansson@linaro.org>2019-04-15 11:55:54 +0200
commitb9ffe4086206d1aedb3c7e62249e84beefdc2bca (patch)
tree82d9fc6cd480745bbb24b63dd2be9fd2efa4fe7c /drivers/mmc/host/mmc_spi.c
parentmmc: mmci: replace blksz_datactrlXX by get_datactrl_cfg callback (diff)
downloadlinux-dev-b9ffe4086206d1aedb3c7e62249e84beefdc2bca.tar.xz
linux-dev-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.c2
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;
}