summaryrefslogtreecommitdiff
path: root/drivers/spi/spi-jcore.c
diff options
context:
space:
mode:
authorWei Yongjun <weiyj.lk@gmail.com>2016-08-08 13:53:23 +0000
committerMark Brown <broonie@kernel.org>2016-08-09 10:40:05 +0100
commitf75529fd712cb147a81925c58cf260346eae5da3 (patch)
tree61fbb8e4be8628d48e56d424808ab7d402b9e530 /drivers/spi/spi-jcore.c
parent2cb1b3b3ac0ac86b70eb1ecd65585c0d024fe273 (diff)
spi: jcore: remove unnecessary platform_set_drvdata()
The driver core clears the driver data to NULL after device_release or on probe failure. Thus, it is not needed to manually clear the device driver data to NULL. Signed-off-by: Wei Yongjun <weiyj.lk@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-jcore.c')
-rw-r--r--drivers/spi/spi-jcore.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/spi/spi-jcore.c b/drivers/spi/spi-jcore.c
index 7d2044a106a2..f8117b80fa22 100644
--- a/drivers/spi/spi-jcore.c
+++ b/drivers/spi/spi-jcore.c
@@ -206,7 +206,6 @@ static int jcore_spi_probe(struct platform_device *pdev)
exit_busy:
err = -EBUSY;
exit:
- platform_set_drvdata(pdev, NULL);
spi_master_put(master);
return err;
}