diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2016-06-10 10:44:47 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-06-13 08:56:38 -0400 |
commit | 1736121b24f0cf05b08bac03035b9d34d52a5d99 (patch) | |
tree | 60c0faf9331d6c42da131b82c986ca8460d04913 /board | |
parent | cc5cdaad42dc6672ca41c2a2848003a051350d02 (diff) | |
download | u-boot-1736121b24f0cf05b08bac03035b9d34d52a5d99.tar.gz |
board: am437x-hs: spl: Select right dtb from fit
Select a right dtb from FIT for am437x-hs platform.
Reported-by: Madan Srinivas <madans@ti.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/ti/am43xx/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ti/am43xx/board.c b/board/ti/am43xx/board.c index bde5ac7c99..f005762eda 100644 --- a/board/ti/am43xx/board.c +++ b/board/ti/am43xx/board.c @@ -850,7 +850,7 @@ int board_eth_init(bd_t *bis) #ifdef CONFIG_SPL_LOAD_FIT int board_fit_config_name_match(const char *name) { - if (board_is_gpevm() && !strcmp(name, "am437x-gp-evm")) + if (board_is_evm() && !strcmp(name, "am437x-gp-evm")) return 0; else if (board_is_sk() && !strcmp(name, "am437x-sk-evm")) return 0; |