diff options
author | Tom Rini <trini@konsulko.com> | 2021-07-12 12:42:13 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-18 21:03:57 -0400 |
commit | a732f621bc3d05e829006281e7b421b0af3d9b94 (patch) | |
tree | d461954deadeacabd4488d122213f09eb4ac169d /drivers/net/mcffec.c | |
parent | 5e770daa3cb6c0edb71dca2ab57a8c31f8d2b365 (diff) | |
download | u-boot-a732f621bc3d05e829006281e7b421b0af3d9b94.tar.gz u-boot-a732f621bc3d05e829006281e7b421b0af3d9b94.tar.bz2 u-boot-a732f621bc3d05e829006281e7b421b0af3d9b94.zip |
m68k: Remove M54451EVB board
This board has not been converted to CONFIG_DM_MMC by the deadline.
Remove it. As this is also the last in family remove the related
support as well.
Cc: Angelo Durgehello <angelo.dureghello@timesys.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/net/mcffec.c')
-rw-r--r-- | drivers/net/mcffec.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/net/mcffec.c b/drivers/net/mcffec.c index 43bb761483..cef9eecac2 100644 --- a/drivers/net/mcffec.c +++ b/drivers/net/mcffec.c @@ -105,17 +105,11 @@ static void set_fec_duplex_speed(volatile fec_t *fecp, int dup_spd) } if ((dup_spd & 0xFFFF) == _100BASET) { -#ifdef CONFIG_MCF5445x - fecp->rcr &= ~0x200; /* disabled 10T base */ -#endif #ifdef MII_DEBUG printf("100Mbps\n"); #endif bd->bi_ethspeed = 100; } else { -#ifdef CONFIG_MCF5445x - fecp->rcr |= 0x200; /* enabled 10T base */ -#endif #ifdef MII_DEBUG printf("10Mbps\n"); #endif |