Skip to content
Snippets Groups Projects
Commit 4565a74d authored by Masahiro Yamada's avatar Masahiro Yamada
Browse files

ARM: uniphier: do not overwrite fdt_file environment


This code auto-detects the best-match FDT file name, but it should
respect the user's choice if "fdt_file" environment is found in a
saved set of environments.

Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
parent 80630dad
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,9 @@ static int uniphier_set_fdt_file(void)
int buf_len = 256;
int ret;
if (getenv("fdt_file"))
return 0; /* do nothing if it is already set */
ret = fdt_get_string(gd->fdt_blob, 0, "compatible", &compat);
if (ret)
return -EINVAL;
......
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