From: juhosg Date: Mon, 8 Jul 2013 08:40:18 +0000 (+0000) Subject: ar71xx: fix for wrong eth0 mac assignment on Netgear WNDAP360 X-Git-Tag: fast2504n-3.10.28-merged~2142 X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=24d51debb60b20a762aaab7b4e9ca274e80edee7;p=openwrt.git ar71xx: fix for wrong eth0 mac assignment on Netgear WNDAP360 Signed-off-by: Jacek Kikiewicz Signed-off-by: Gabor Juhos git-svn-id: svn://svn.openwrt.org/openwrt/trunk@37192 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-wndap360.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-wndap360.c index 3d8d6b0af1..0fd399ebc7 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-wndap360.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-wndap360.c @@ -76,7 +76,9 @@ static void __init wndap360_setup(void) ath79_register_mdio(0, ~(WNDAP360_LAN_PHYMASK)); - ath79_init_mac(ath79_eth0_data.mac_addr, art, 0); + /* Reusing wifi MAC with offset of 1 as eth0 MAC */ + ath79_init_mac(ath79_eth0_data.mac_addr, + art + WNDAP360_WMAC0_MAC_OFFSET, 1); ath79_eth0_pll_data.pll_1000 = 0x11110000; ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_RGMII; ath79_eth0_data.phy_mask = WNDAP360_LAN_PHYMASK;