mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-20 22:21:41 +00:00
cm-t54: fix EEPROM read return value check
Fix cl_eeprom_read_mac_addr() return value check. Fix long line codding style issue in board_init(). Signed-off-by: Dmitry Lifshitz <lifshitz@compulab.co.il>
This commit is contained in:
parent
f2a1b93b5c
commit
91c9885e6d
1 changed files with 2 additions and 2 deletions
|
@ -43,7 +43,7 @@ const struct omap_sysinfo sysinfo = {
|
||||||
*/
|
*/
|
||||||
int board_init(void)
|
int board_init(void)
|
||||||
{
|
{
|
||||||
gd->bd->bi_boot_params = (CONFIG_SYS_SDRAM_BASE + 0x100); /* boot param addr */
|
gd->bd->bi_boot_params = (CONFIG_SYS_SDRAM_BASE + 0x100);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -169,7 +169,7 @@ static int handle_mac_address(void)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
ret = cl_eeprom_read_mac_addr(enetaddr);
|
ret = cl_eeprom_read_mac_addr(enetaddr);
|
||||||
if (!ret || !is_valid_ether_addr(enetaddr))
|
if (ret || !is_valid_ether_addr(enetaddr))
|
||||||
generate_mac_addr(enetaddr);
|
generate_mac_addr(enetaddr);
|
||||||
|
|
||||||
if (!is_valid_ether_addr(enetaddr))
|
if (!is_valid_ether_addr(enetaddr))
|
||||||
|
|
Loading…
Add table
Reference in a new issue