From: Nishanth Menon Date: Fri, 2 Sep 2016 18:51:33 +0000 (-0500) Subject: board: am57xx: Fix missing check for beagle_x15 X-Git-Tag: v2016.09~12 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c989166037941f80e0d46f1fa4e37c9f4f876b80;p=oweals%2Fu-boot.git board: am57xx: Fix missing check for beagle_x15 When beagleboard-X15 is booted, we see the following log: Unidentified board claims BBRDX15_ in eeprom header This is because of the missing check for x15 (the default) and reports an error for a valid board configuration. Fix the same. Signed-off-by: Nishanth Menon Reviewed-by: Tom Rini Reviewed-by: Lokesh Vutla --- diff --git a/board/ti/am57xx/board.c b/board/ti/am57xx/board.c index 927d1364fe..64de602541 100644 --- a/board/ti/am57xx/board.c +++ b/board/ti/am57xx/board.c @@ -338,7 +338,9 @@ static void setup_board_eeprom_env(void) if (rc) goto invalid_eeprom; - if (board_is_am572x_evm()) + if (board_is_x15()) + name = "beagle_x15"; + else if (board_is_am572x_evm()) name = "am57xx_evm"; else if (board_is_am572x_idk()) name = "am572x_idk";