diff options
author | John Crispin <blogic@openwrt.org> | 2014-08-25 06:35:58 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2014-08-25 06:35:58 +0000 |
commit | f6c4ee7ac036cd2ab4be9047a193e5ee76a1c899 (patch) | |
tree | 8e6a4754d43f672e8209711aa90d4c87d05d746b | |
parent | 545045db6b4360bf7109df8906a5659b70084236 (diff) | |
download | master-187ad058-f6c4ee7ac036cd2ab4be9047a193e5ee76a1c899.tar.gz master-187ad058-f6c4ee7ac036cd2ab4be9047a193e5ee76a1c899.tar.bz2 master-187ad058-f6c4ee7ac036cd2ab4be9047a193e5ee76a1c899.zip |
ar71xx: use ETH_ALEN for consistency
Signed-off-by: Forest Crossman <cyrozap@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@42280 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-esr900.c | 6 |
1 files 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) { |