summaryrefslogtreecommitdiffstats
path: root/board/compulab
diff options
context:
space:
mode:
authorDmitry Lifshitz <lifshitz@compulab.co.il>2014-07-31 14:30:39 +0300
committerTom Rini <trini@ti.com>2014-08-25 10:48:13 -0400
commit91c9885e6d80afe23040bcec743034018dfec91c (patch)
treecfb1bbab3d5bb2c39257f27fe9d4b35bd2b676f6 /board/compulab
parentf2a1b93b5c6641a73f7b4a274fa2a5a1adc08006 (diff)
downloadblackbird-obmc-uboot-91c9885e6d80afe23040bcec743034018dfec91c.tar.gz
blackbird-obmc-uboot-91c9885e6d80afe23040bcec743034018dfec91c.zip
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>
Diffstat (limited to 'board/compulab')
-rw-r--r--board/compulab/cm_t54/cm_t54.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/compulab/cm_t54/cm_t54.c b/board/compulab/cm_t54/cm_t54.c
index fadfddc077..306491b11b 100644
--- a/board/compulab/cm_t54/cm_t54.c
+++ b/board/compulab/cm_t54/cm_t54.c
@@ -43,7 +43,7 @@ const struct omap_sysinfo sysinfo = {
*/
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;
}
@@ -169,7 +169,7 @@ static int handle_mac_address(void)
return 0;
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);
if (!is_valid_ether_addr(enetaddr))
OpenPOWER on IntegriCloud