mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
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 <nm@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com> Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
This commit is contained in:
parent
c0b1d80a10
commit
c989166037
1 changed files with 3 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue