2023-08-03 11:04:29

by Andrei Coardos

[permalink] [raw]
Subject: [PATCH] reset: lantiq: 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 <[email protected]>
Signed-off-by: Andrei Coardos <[email protected]>
---
drivers/reset/reset-lantiq.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/drivers/reset/reset-lantiq.c b/drivers/reset/reset-lantiq.c
index 549ba45d8597..652a45890cb2 100644
--- a/drivers/reset/reset-lantiq.c
+++ b/drivers/reset/reset-lantiq.c
@@ -173,7 +173,6 @@ static int lantiq_rcu_reset_probe(struct platform_device *pdev)
return -ENOMEM;

priv->dev = &pdev->dev;
- platform_set_drvdata(pdev, priv);

err = lantiq_rcu_reset_of_parse(pdev, priv);
if (err)
--
2.34.1



2023-08-08 20:02:58

by Philipp Zabel

[permalink] [raw]
Subject: Re: [PATCH] reset: lantiq: remove unneeded call to platform_set_drvdata()

On Do, 2023-08-03 at 13:42 +0300, Andrei Coardos wrote:
> 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 <[email protected]>
> Signed-off-by: Andrei Coardos <[email protected]>

Thank you, applied to reset/next.

regards
Philipp