From 67cf439237f631a21c5cc8bbdafb4d1d370f28d4 Mon Sep 17 00:00:00 2001
From: John Crispin <john@openwrt.org>
Date: Mon, 25 Aug 2014 06:35:58 +0000
Subject: [PATCH] ar71xx: use ETH_ALEN for consistency

Signed-off-by: Forest Crossman <cyrozap@gmail.com>

SVN-Revision: 42280
---
 target/linux/ar71xx/files/arch/mips/ath79/mach-esr900.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-esr900.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-esr900.c
index ca36e36114..aa2e7f7f4e 100644
--- a/target/linux/ar71xx/files/arch/mips/ath79/mach-esr900.c
+++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-esr900.c
@@ -145,9 +145,9 @@ static void __init esr900_setup(void)
 {
 	const char *config = (char *) KSEG1ADDR(ESR900_CONFIG_ADDR);
 	u8 *art = (u8 *) KSEG1ADDR(ESR900_CALDATA_ADDR);
-	u8 lan_mac[6];
-	u8 wlan0_mac[6];
-	u8 wlan1_mac[6];
+	u8 lan_mac[ETH_ALEN];
+	u8 wlan0_mac[ETH_ALEN];
+	u8 wlan1_mac[ETH_ALEN];
 
 	if (ath79_nvram_parse_mac_addr(config, ESR900_CONFIG_SIZE,
 				       "ethaddr=", lan_mac) == 0) {
-- 
GitLab