diff options
author | Tom Rini <trini@ti.com> | 2013-06-27 09:55:39 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-06-27 09:55:39 -0400 |
commit | 20cb5fbec649ea3f4baaa7eab1ad77e9d7dfdca5 (patch) | |
tree | 371de5453ca844bab308fb4d0c2f8e4632334255 /include/configs | |
parent | 58a5c43c09398d7cc68417117f1d882f1ca831cc (diff) | |
download | u-boot-imx-20cb5fbec649ea3f4baaa7eab1ad77e9d7dfdca5.zip u-boot-imx-20cb5fbec649ea3f4baaa7eab1ad77e9d7dfdca5.tar.gz u-boot-imx-20cb5fbec649ea3f4baaa7eab1ad77e9d7dfdca5.tar.bz2 |
am335x_evm: Add missing ';' in findfdt
In a714321 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: Tom Rini <trini@ti.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/am335x_evm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index 9c3c2cd..c5a6d4b 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -145,7 +145,7 @@ "if test $board_name = A33515BB; then " \ "setenv fdtfile am335x-evm.dtb; fi; " \ "if test $board_name = A335X_SK; then " \ - "setenv fdtfile am335x-evmsk.dtb; fi " \ + "setenv fdtfile am335x-evmsk.dtb; fi; " \ "if test $fdtfile = undefined; then " \ "echo WARNING: Could not determine device tree to use; fi; \0" #endif |