diff options
author | Schuyler Patton <spatton@ti.com> | 2016-11-25 11:14:25 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-12-04 13:54:56 -0500 |
commit | 45e7f7e78b212e6ff10d396d35c3e4500fb36860 (patch) | |
tree | c014e8ed5c5a3be52cad1e0aaa5ef53b3fc3d7fc /board | |
parent | 4d8397c66fefb079ac37911597a24709e785f0b7 (diff) | |
download | u-boot-imx-45e7f7e78b212e6ff10d396d35c3e4500fb36860.zip u-boot-imx-45e7f7e78b212e6ff10d396d35c3e4500fb36860.tar.gz u-boot-imx-45e7f7e78b212e6ff10d396d35c3e4500fb36860.tar.bz2 |
ARM: dts: AM571x-IDK Initial Support
Add initial DTS support for AM571-IDK evm.
Signed-off-by: Schuyler Patton <spatton@ti.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/ti/am57xx/board.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/ti/am57xx/board.c b/board/ti/am57xx/board.c index 0c9d724..797d7a4 100644 --- a/board/ti/am57xx/board.c +++ b/board/ti/am57xx/board.c @@ -857,6 +857,8 @@ int board_fit_config_name_match(const char *name) return 0; } else if (board_is_am572x_idk() && !strcmp(name, "am572x-idk")) { return 0; + } else if (board_is_am571x_idk() && !strcmp(name, "am571x-idk")) { + return 0; } return -1; |