[U-Boot] [PATCH] rpi: Add a call to fdt_fixup_ethernet()

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@redhat.com Cc: Stephen Warren swarren@wwwdotorg.org Signed-off-by: Tom Rini trini@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; }

On Mi, 2017-04-26 at 15:44 -0400, Tom Rini wrote:
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.
Works.
Tested-by: Gerd Hoffmann kraxel@redhat.com
thanks, Gerd
participants (2)
-
Gerd Hoffmann
-
Tom Rini