As we no longer have a call to fdt_fixup_ethernet in image_setup_libfdt we need to make a call to fdt_fixup_ethernet ourself somewhere. Do this in ft_board_setup here as we already have other fixups being performed on the board here.
Fixes: 3f66149d9fb4 ("Remove extra fdt_fixup_ethernet() call") Reported-by: Gerd Hoffmann <kra...@redhat.com> Cc: Stephen Warren <swar...@wwwdotorg.org> Signed-off-by: Tom Rini <tr...@konsulko.com> --- board/raspberrypi/rpi/rpi.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/board/raspberrypi/rpi/rpi.c b/board/raspberrypi/rpi/rpi.c index 2146534b3653..5b037563a5b3 100644 --- a/board/raspberrypi/rpi/rpi.c +++ b/board/raspberrypi/rpi/rpi.c @@ -530,5 +530,11 @@ int ft_board_setup(void *blob, bd_t *bd) efi_add_memory_map(0, 1, EFI_RESERVED_MEMORY_TYPE, 0); #endif + /* + * Fixup all ethernet nodes + * Note: aliases in the dts are required for this + */ + fdt_fixup_ethernet(blob); + return 0; } -- 1.9.1 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot