diff options
author | Neil Armstrong <narmstrong@baylibre.com> | 2021-02-25 09:44:38 +0100 |
---|---|---|
committer | Neil Armstrong <narmstrong@baylibre.com> | 2021-04-06 11:10:29 +0200 |
commit | 2fbd37001c77f0b78d43c578d8e350a6afa27e24 (patch) | |
tree | b877d17c45d76172f1394f7f7fee5055dd12c4e4 /board/amlogic/w400/w400.c | |
parent | 775998d4518c2da2cda02e11edd73a6a7397fcc9 (diff) | |
download | u-boot-2fbd37001c77f0b78d43c578d8e350a6afa27e24.tar.gz |
arm: meson: remove static ethernet link setup
The static ethernet link type config code is no more needed because now handled by
the meson8b glue driver, delete it.
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Diffstat (limited to 'board/amlogic/w400/w400.c')
-rw-r--r-- | board/amlogic/w400/w400.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/amlogic/w400/w400.c b/board/amlogic/w400/w400.c index 47a51710dc9..4199198496b 100644 --- a/board/amlogic/w400/w400.c +++ b/board/amlogic/w400/w400.c @@ -14,7 +14,7 @@ int misc_init_r(void) { - meson_eth_init(PHY_INTERFACE_MODE_RGMII, 0); + meson_generate_serial_ethaddr(); return 0; } |