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

From: Andrei Coardos
Date: Mon Aug 07 2023 - 09:14:29 EST


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@xxxxxxxxx>
---
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