diff options
author | Tom Rini <trini@konsulko.com> | 2022-12-02 16:42:47 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-22 10:31:49 -0500 |
commit | 4fd9373bbb3f160c2975fc9de2fab49040141833 (patch) | |
tree | 3adab895551795a8993143119fe31ebe679a128b /arch/powerpc/cpu/mpc83xx/cpu.c | |
parent | 60910a3f0267ccf2f87f1205aa3fb76491e674b5 (diff) | |
download | u-boot-4fd9373bbb3f160c2975fc9de2fab49040141833.tar.gz |
net: Remove more legacy functions
Remove some of the board and arch specific non-DM_ETH helper code.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/powerpc/cpu/mpc83xx/cpu.c')
-rw-r--r-- | arch/powerpc/cpu/mpc83xx/cpu.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/powerpc/cpu/mpc83xx/cpu.c b/arch/powerpc/cpu/mpc83xx/cpu.c index 8d531898bd8..a6c063556e8 100644 --- a/arch/powerpc/cpu/mpc83xx/cpu.c +++ b/arch/powerpc/cpu/mpc83xx/cpu.c @@ -180,24 +180,6 @@ void watchdog_reset (void) } #endif -#ifndef CONFIG_DM_ETH -/* - * Initializes on-chip ethernet controllers. - * to override, implement board_eth_init() - */ -int cpu_eth_init(struct bd_info *bis) -{ -#if defined(CONFIG_UEC_ETH) - uec_standard_init(bis); -#endif - -#if defined(CONFIG_TSEC_ENET) - tsec_standard_init(bis); -#endif - return 0; -} -#endif /* !CONFIG_DM_ETH */ - /* * Initializes on-chip MMC controllers. * to override, implement board_mmc_init() |