mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
Remove extra fdt_fixup_ethernet() call
ft_cpu_setup() already calls fdt_fixup_ethernet(), calling it
in image_setup_libfdt() is both redundant and breaks any modifications
done by ft_board_setup(). Restore the old behavior by removing
the call in image_setup_libfdt()
Fixes: 13d06981a9
("image: Add device tree setup to image library")
Signed-off-by: Joakim Tjernlund <joakim.tjernlund@infinera.com>
This commit is contained in:
parent
4c4da9fbff
commit
3f66149d9f
1 changed files with 0 additions and 1 deletions
|
@ -494,7 +494,6 @@ int image_setup_libfdt(bootm_headers_t *images, void *blob,
|
|||
goto err;
|
||||
}
|
||||
}
|
||||
fdt_fixup_ethernet(blob);
|
||||
|
||||
/* Delete the old LMB reservation */
|
||||
if (lmb)
|
||||
|
|
Loading…
Reference in a new issue