Commit 417a3a5a authored by Andrei Coardos's avatar Andrei Coardos Committed by Philipp Zabel
Browse files

reset: ti: syscon: 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.

Signed-off-by: default avatarAndrei Coardos <aboutphysycs@gmail.com>
Acked-by: default avatarAndrew Davis <afd@ti.com>
Reviewed-by: default avatarAlexandru Ardelean <alex@shruggie.ro>
Link: https://lore.kernel.org/r/20230807111534.12392-1-aboutphysycs@gmail.com


Signed-off-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
parent 0c8603cd
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -204,8 +204,6 @@ static int ti_syscon_reset_probe(struct platform_device *pdev)
	data->controls = controls;
	data->nr_controls = nr_controls;

	platform_set_drvdata(pdev, data);

	return devm_reset_controller_register(dev, &data->rcdev);
}