[U-Boot] [PATCH] rpi: Add a call to fdt_fixup_ethernet()
Tom Rini
trini at konsulko.com
Wed Apr 26 19:44:40 UTC 2017
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 <kraxel at redhat.com>
Cc: Stephen Warren <swarren at wwwdotorg.org>
Signed-off-by: Tom Rini <trini at 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
More information about the U-Boot
mailing list