summaryrefslogtreecommitdiff
path: root/board/davinci
diff options
context:
space:
mode:
authorAndre Przywara <andre.przywara@arm.com>2016-11-16 00:50:12 +0000
committerTom Rini <trini@konsulko.com>2016-12-04 13:55:02 -0500
commitbb72b94e227d292caf158b5b78100c27b2065243 (patch)
treecdaae19fd2cd0e85d5d48ef703b9c356c16746ab /board/davinci
parent566a965af1d8c6151bb7c11cb55c9bd32cfeae8c (diff)
davinci: da8xxevm: fix indentation
Apparently the indentation is wrong in this case, as the second message should be printed indepdently of the if statement. Fix this indentation to avoid both compiler warnings and puzzled readers. Pointed out by GCC 6.2's -Wmisleading-indentation warning. Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Diffstat (limited to 'board/davinci')
-rw-r--r--board/davinci/da8xxevm/da850evm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/davinci/da8xxevm/da850evm.c b/board/davinci/da8xxevm/da850evm.c
index 50223f4e22..52f914d7a4 100644
--- a/board/davinci/da8xxevm/da850evm.c
+++ b/board/davinci/da8xxevm/da850evm.c
@@ -164,7 +164,7 @@ int misc_init_r(void)
memcmp(env_enetaddr, buff, 6))
printf("Warning: MAC address in SPI flash don't match "
"with the MAC address in the environment\n");
- printf("Default using MAC address from environment\n");
+ printf("Default using MAC address from environment\n");
}
#endif
uint8_t enetaddr[8];
@@ -190,7 +190,7 @@ int misc_init_r(void)
if (eeprom_mac_read && memcmp(enetaddr, env_enetaddr, 6))
printf("Warning: MAC address in EEPROM don't match "
"with the MAC address in the environment\n");
- printf("Default using MAC address from environment\n");
+ printf("Default using MAC address from environment\n");
}
#endif