Skip to content
Snippets Groups Projects
Commit c9891660 authored by Nishanth Menon's avatar Nishanth Menon Committed by Tom Rini
Browse files

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: default avatarNishanth Menon <nm@ti.com>
Reviewed-by: default avatarTom Rini <trini@konsulko.com>
Reviewed-by: default avatarLokesh Vutla <lokeshvutla@ti.com>
parent c0b1d80a
No related branches found
No related tags found
No related merge requests found
...@@ -338,7 +338,9 @@ static void setup_board_eeprom_env(void) ...@@ -338,7 +338,9 @@ static void setup_board_eeprom_env(void)
if (rc) if (rc)
goto invalid_eeprom; goto invalid_eeprom;
if (board_is_am572x_evm()) if (board_is_x15())
name = "beagle_x15";
else if (board_is_am572x_evm())
name = "am57xx_evm"; name = "am57xx_evm";
else if (board_is_am572x_idk()) else if (board_is_am572x_idk())
name = "am572x_idk"; name = "am572x_idk";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment