diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2020-05-20 12:31:28 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2020-05-22 11:21:06 +0900 |
commit | 6cbe90486c581db5be84f0a0d9384705f54edabc (patch) | |
tree | 4c325ab1f54eff37acd70bb264be281c06a1ee65 /arch/arm/mach-uniphier | |
parent | 6717e154473bc44110ae0c6264c2ab84a43579de (diff) |
ARM: uniphier: remove board_eth_init()
This platform completely migrated to CONFIG_DM_ETH.
board_eth_init() is only called from net/eth_legacy.c
Remove the legacy hook.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/arm/mach-uniphier')
-rw-r--r-- | arch/arm/mach-uniphier/micro-support-card.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/arch/arm/mach-uniphier/micro-support-card.c b/arch/arm/mach-uniphier/micro-support-card.c index 3bd26f26db..b09ec54e1f 100644 --- a/arch/arm/mach-uniphier/micro-support-card.c +++ b/arch/arm/mach-uniphier/micro-support-card.c @@ -107,18 +107,6 @@ void support_card_init(void) support_card_show_revision(); } -#if defined(CONFIG_SMC911X) -#include <netdev.h> - -int board_eth_init(bd_t *bis) -{ - if (!support_card_found) - return 0; - - return smc911x_initialize(0, (unsigned long)support_card_base + SMC911X_OFFSET); -} -#endif - #if defined(CONFIG_MTD_NOR_FLASH) #include <mtd/cfi_flash.h> |