
3 Feb
2012
3 Feb
'12
4:05 p.m.
On Thursday 02 February 2012 08:42:17 Manjunath Hadli wrote:
--- a/board/davinci/da8xxevm/da850evm.c +++ b/board/davinci/da8xxevm/da850evm.c
int misc_init_r(void) { dspwake();
+#ifdef CONFIG_MAC_ADDR_IN_SPIFLASH
- uchar buff[8];
- int ret;
- if (!eth_getenv_enetaddr("ethaddr", buff)) {
ret = get_mac_addr(buff);
if (ret != 0)
return -EINVAL;
if (!is_valid_ether_addr(buff)) {
printf("Invalid MAC address read.\n");
return -EINVAL;
}
eth_setenv_enetaddr("ethaddr", buff);
- }
+#endif
i don't think you should return -EINVAL here. just issue the warning and be done with it. -mike