diff options
| author | Tom Rini <[email protected]> | 2022-08-02 07:33:35 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-08-12 16:10:50 -0400 |
| commit | ecf1d2741d95f5f84e31dc1d0bef149d8ff1f0a3 (patch) | |
| tree | d45e8d2bc7f27f0f42206c26ca5ee36cd54bf708 /board | |
| parent | 08f80184a917077e8ebb7c7646d78eafae921982 (diff) | |
net: Remove smc91111 ethernet driver
This driver has not been converted to DM_ETH. The migration deadline
passed 2 years ago.
Cc: Linus Walleij <[email protected]>
Cc: David Feng <[email protected]>
Cc: Liviu Dudau <[email protected]>
Cc: Andre Przywara <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Acked-by: Ramon Fried <[email protected]>
Diffstat (limited to 'board')
| -rw-r--r-- | board/armltd/integrator/integrator.c | 3 | ||||
| -rw-r--r-- | board/armltd/vexpress64/vexpress64.c | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/board/armltd/integrator/integrator.c b/board/armltd/integrator/integrator.c index e734ceae889..4959a7fd6dc 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 709ebf3fb08..05a7a25c32e 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 |
