aboutsummaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-08-02 07:33:35 -0400
committerTom Rini <trini@konsulko.com>2022-08-12 16:10:50 -0400
commitecf1d2741d95f5f84e31dc1d0bef149d8ff1f0a3 (patch)
treed45e8d2bc7f27f0f42206c26ca5ee36cd54bf708 /board
parent08f80184a917077e8ebb7c7646d78eafae921982 (diff)
downloadu-boot-ecf1d2741d95f5f84e31dc1d0bef149d8ff1f0a3.zip
u-boot-ecf1d2741d95f5f84e31dc1d0bef149d8ff1f0a3.tar.gz
u-boot-ecf1d2741d95f5f84e31dc1d0bef149d8ff1f0a3.tar.bz2
net: Remove smc91111 ethernet driver
This driver has not been converted to DM_ETH. The migration deadline passed 2 years ago. Cc: Linus Walleij <linus.walleij@linaro.org> Cc: David Feng <fenghua@phytium.com.cn> Cc: Liviu Dudau <liviu.dudau@foss.arm.com> Cc: Andre Przywara <andre.przywara@arm.com> Signed-off-by: Tom Rini <trini@konsulko.com> Acked-by: Ramon Fried <rfried.dev@gmail.com>
Diffstat (limited to 'board')
-rw-r--r--board/armltd/integrator/integrator.c3
-rw-r--r--board/armltd/vexpress64/vexpress64.c3
2 files changed, 0 insertions, 6 deletions
diff --git a/board/armltd/integrator/integrator.c b/board/armltd/integrator/integrator.c
index e734cea..4959a7f 100644
--- a/board/armltd/integrator/integrator.c
+++ b/board/armltd/integrator/integrator.c
@@ -179,9 +179,6 @@ extern void dram_query(void);
int board_eth_init(struct bd_info *bis)
{
int rc = 0;
-#ifdef CONFIG_SMC91111
- rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
-#endif
return rc;
}
#endif
diff --git a/board/armltd/vexpress64/vexpress64.c b/board/armltd/vexpress64/vexpress64.c
index 709ebf3..05a7a25 100644
--- a/board/armltd/vexpress64/vexpress64.c
+++ b/board/armltd/vexpress64/vexpress64.c
@@ -200,9 +200,6 @@ int board_eth_init(struct bd_info *bis)
{
int rc = 0;
#ifndef CONFIG_DM_ETH
-#ifdef CONFIG_SMC91111
- rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
-#endif
#ifdef CONFIG_SMC911X
rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
#endif