From 0adb5b761f4c789ae47d8abb015f5e017263d3f2 Mon Sep 17 00:00:00 2001 From: Joe Hershberger Date: Wed, 8 Apr 2015 01:41:04 -0500 Subject: net: cosmetic: Name ethaddr variables consistently Use "_ethaddr" at the end of variables and drop CamelCase. Make constant values actually 'const'. Signed-off-by: Joe Hershberger Acked-by: Simon Glass --- board/BuR/common/common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'board/BuR/common') diff --git a/board/BuR/common/common.c b/board/BuR/common/common.c index ccaa9c6..13f23fd 100644 --- a/board/BuR/common/common.c +++ b/board/BuR/common/common.c @@ -216,7 +216,7 @@ static const char *dtbmacaddr(u32 ifno) node = fdt_path_offset((void *)dtbaddr, path); mac = fdt_getprop((void *)dtbaddr, node, "mac-address", &len); - if (mac && is_valid_ether_addr((u8 *)mac)) + if (mac && is_valid_ethaddr((u8 *)mac)) return mac; return NULL; @@ -595,7 +595,7 @@ int board_eth_init(bd_t *bis) #endif if (!mac) { printf(" not set. validating E-fuse MAC ... "); - if (is_valid_ether_addr((const u8 *)mac_addr)) + if (is_valid_ethaddr((const u8 *)mac_addr)) mac = (const char *)mac_addr; } -- cgit v1.1