summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Malysa <[email protected]>2025-02-28 13:58:34 -0500
committerTom Rini <[email protected]>2025-03-13 09:52:33 -0600
commit74f4170a87a72438842ec7084741968dbc270702 (patch)
tree2cca93e5cf033a1dae9fe46402d86e3b5524da71
parent3ce975ab888b583cb5816b1aa453136ea9549a3c (diff)
arm: mach-sc5xx: Remove inappropriate board-specific functions
The sc5xx machine code includes implementations of board_init and board_early_init_f which should not be included in the base soc support code, as they should be implemented by a board where necessary. This removes the default empty implementations of both from mach-sc5xx. Signed-off-by: Greg Malysa <[email protected]>
-rw-r--r--arch/arm/mach-sc5xx/soc.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/arch/arm/mach-sc5xx/soc.c b/arch/arm/mach-sc5xx/soc.c
index 9bf7c314e01..8f13127a660 100644
--- a/arch/arm/mach-sc5xx/soc.c
+++ b/arch/arm/mach-sc5xx/soc.c
@@ -172,16 +172,6 @@ void fixup_dp83867_phy(struct phy_device *phydev)
phy_write(phydev, MDIO_DEVAD_NONE, 0, 0x3100);
}
-int board_early_init_f(void)
-{
- return 0;
-}
-
-int board_init(void)
-{
- return 0;
-}
-
int dram_init(void)
{
gd->ram_size = CFG_SYS_SDRAM_SIZE;