[PATCH] spi: jcore: removed unneeded call to platform_set_drvdata()

Andrei Coardos posted 1 patch 2 years, 1 month ago
drivers/spi/spi-jcore.c | 1 -
1 file changed, 1 deletion(-)
[PATCH] spi: jcore: removed unneeded call to platform_set_drvdata()
Posted by Andrei Coardos 2 years, 1 month ago
This function call was found to be unnecessary as there is no equivalent
platform_get_drvdata() call to access the private data of the driver. Also,
the private data is defined in this driver, so there is no risk of it being
accessed outside of this driver file.

Signed-off-by: Andrei Coardos <aboutphysycs@gmail.com>
---
 drivers/spi/spi-jcore.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/spi/spi-jcore.c b/drivers/spi/spi-jcore.c
index c42a3358e8c9..f627877ae85b 100644
--- a/drivers/spi/spi-jcore.c
+++ b/drivers/spi/spi-jcore.c
@@ -162,7 +162,6 @@ static int jcore_spi_probe(struct platform_device *pdev)
 
 	hw = spi_master_get_devdata(master);
 	hw->master = master;
-	platform_set_drvdata(pdev, hw);
 
 	/* Find and map our resources */
 	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-- 
2.34.1