Skip to content
Snippets Groups Projects
Commit 20cb5fbe authored by Tom Rini's avatar Tom Rini
Browse files

am335x_evm: Add missing ';' in findfdt


In a7143215 we add a check at the end of findfdt to make sure we have
updated it from undefined and if not, warn the user.  This however
forgot a ';' on the end of the previous last test.

Signed-off-by: default avatarTom Rini <trini@ti.com>
parent 58a5c43c
No related branches found
No related tags found
No related merge requests found
...@@ -145,7 +145,7 @@ ...@@ -145,7 +145,7 @@
"if test $board_name = A33515BB; then " \ "if test $board_name = A33515BB; then " \
"setenv fdtfile am335x-evm.dtb; fi; " \ "setenv fdtfile am335x-evm.dtb; fi; " \
"if test $board_name = A335X_SK; then " \ "if test $board_name = A335X_SK; then " \
"setenv fdtfile am335x-evmsk.dtb; fi " \ "setenv fdtfile am335x-evmsk.dtb; fi; " \
"if test $fdtfile = undefined; then " \ "if test $fdtfile = undefined; then " \
"echo WARNING: Could not determine device tree to use; fi; \0" "echo WARNING: Could not determine device tree to use; fi; \0"
#endif #endif
......
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