]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
cm-t54: fix EEPROM read return value check
authorDmitry Lifshitz <lifshitz@compulab.co.il>
Thu, 31 Jul 2014 11:30:39 +0000 (14:30 +0300)
committerTom Rini <trini@ti.com>
Mon, 25 Aug 2014 14:48:13 +0000 (10:48 -0400)
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>
board/compulab/cm_t54/cm_t54.c

index fadfddc077873bb0fdff230b443b29796f4c67a4..306491b11bf85ef33319c34a3f0933701d5139f1 100644 (file)
@@ -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))