diff options
author | Schuyler Patton <spatton@ti.com> | 2016-06-10 09:35:45 +0530 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-06-13 08:56:38 -0400 |
commit | 332dddc6a1290665963be3b74d3ec7a80d7bf1ae (patch) | |
tree | 15394bea718beea497614cfd0def086a16042256 /board | |
parent | 5e8f29a08225016311d190363c68eeab5b8b4b7c (diff) |
ARM: dts: AM572x-IDK Initial Support
Add initial DTS support for AM572-IDK evm.
Reviewed-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Schuyler Patton <spatton@ti.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.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 ac5b7941b28..08cf14d5e73 100644 --- a/board/ti/am57xx/board.c +++ b/board/ti/am57xx/board.c @@ -744,6 +744,8 @@ int board_fit_config_name_match(const char *name) return 0; else if (board_is_am572x_evm() && !strcmp(name, "am57xx-beagle-x15")) return 0; + else if (board_is_am572x_idk() && !strcmp(name, "am572x-idk")) + return 0; else return -1; } |