Skip to content
Snippets Groups Projects
Commit 3f66149d authored by Joakim Tjernlund's avatar Joakim Tjernlund Committed by Tom Rini
Browse files

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: 13d06981 ("image: Add device tree setup to image library")
Signed-off-by: default avatarJoakim Tjernlund <joakim.tjernlund@infinera.com>
parent 4c4da9fb
No related branches found
No related tags found
No related merge requests found
...@@ -494,7 +494,6 @@ int image_setup_libfdt(bootm_headers_t *images, void *blob, ...@@ -494,7 +494,6 @@ int image_setup_libfdt(bootm_headers_t *images, void *blob,
goto err; goto err;
} }
} }
fdt_fixup_ethernet(blob);
/* Delete the old LMB reservation */ /* Delete the old LMB reservation */
if (lmb) if (lmb)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment