summaryrefslogtreecommitdiffstats
path: root/drivers/reset
diff options
context:
space:
mode:
authorAndrei Coardos <aboutphysycs@gmail.com>2023-08-07 13:45:49 +0300
committerPhilipp Zabel <p.zabel@pengutronix.de>2023-08-08 15:31:00 +0200
commitfdc670acf62ccbd3adadf8bd4be2175e1c3a648d (patch)
tree2a9de57cd629ae280490d8b58bf52eaa92769021 /drivers/reset
parent41bbf70471a251f6c553855260c3408d8b4d83c3 (diff)
downloadlinux-fdc670acf62ccbd3adadf8bd4be2175e1c3a648d.tar.gz
linux-fdc670acf62ccbd3adadf8bd4be2175e1c3a648d.tar.bz2
linux-fdc670acf62ccbd3adadf8bd4be2175e1c3a648d.zip
reset: lpc18xx: remove unneeded call to platform_set_drvdata()
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. Reviewed-by: Alexandru Ardelean <alex@shruggie.ro> Signed-off-by: Andrei Coardos <aboutphysycs@gmail.com> Link: https://lore.kernel.org/r/20230807104549.11225-1-aboutphysycs@gmail.com Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Diffstat (limited to 'drivers/reset')
-rw-r--r--drivers/reset/reset-lpc18xx.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/reset/reset-lpc18xx.c b/drivers/reset/reset-lpc18xx.c
index 36ec95518905..28fb85772b3e 100644
--- a/drivers/reset/reset-lpc18xx.c
+++ b/drivers/reset/reset-lpc18xx.c
@@ -188,8 +188,6 @@ static int lpc18xx_rgu_probe(struct platform_device *pdev)
rc->rcdev.ops = &lpc18xx_rgu_ops;
rc->rcdev.of_node = pdev->dev.of_node;
- platform_set_drvdata(pdev, rc);
-
ret = reset_controller_register(&rc->rcdev);
if (ret) {
dev_err(&pdev->dev, "unable to register device\n");