[PATCH v1 04/12] arm: rockchip: px30: Remove unused syscon drivers code

Anand Moon linux.amoon at gmail.com
Tue Aug 6 06:38:41 CEST 2024


Since commit 95397385091d ("treewide: Use OF_REAL instead of !OF_PLATDATA"),
the OF_PLATDATA code. As OF_PLATDATA is no longer enabled, the related
code is removed.

Signed-off-by: Anand Moon <linux.amoon at gmail.com>
---
 arch/arm/mach-rockchip/px30/syscon_px30.c | 31 -----------------------
 1 file changed, 31 deletions(-)

diff --git a/arch/arm/mach-rockchip/px30/syscon_px30.c b/arch/arm/mach-rockchip/px30/syscon_px30.c
index 893a5234baa..cc5adc71569 100644
--- a/arch/arm/mach-rockchip/px30/syscon_px30.c
+++ b/arch/arm/mach-rockchip/px30/syscon_px30.c
@@ -23,34 +23,3 @@ U_BOOT_DRIVER(syscon_px30) = {
 #endif
 	.of_match = px30_syscon_ids,
 };
-
-#if CONFIG_IS_ENABLED(OF_PLATDATA)
-static int px30_syscon_bind_of_plat(struct udevice *dev)
-{
-	dev->driver_data = dev->driver->of_match->data;
-	debug("syscon: %s %d\n", dev->name, (uint)dev->driver_data);
-
-	return 0;
-}
-
-U_BOOT_DRIVER(rockchip_px30_pmu) = {
-	.name = "rockchip_px30_pmu",
-	.id = UCLASS_SYSCON,
-	.of_match = px30_syscon_ids,
-	.bind = px30_syscon_bind_of_plat,
-};
-
-U_BOOT_DRIVER(rockchip_px30_pmugrf) = {
-	.name = "rockchip_px30_pmugrf",
-	.id = UCLASS_SYSCON,
-	.of_match = px30_syscon_ids + 1,
-	.bind = px30_syscon_bind_of_plat,
-};
-
-U_BOOT_DRIVER(rockchip_px30_grf) = {
-	.name = "rockchip_px30_grf",
-	.id = UCLASS_SYSCON,
-	.of_match = px30_syscon_ids + 2,
-	.bind = px30_syscon_bind_of_plat,
-};
-#endif
-- 
2.46.0



More information about the U-Boot mailing list