diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-12-11 19:21:59 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-12-11 19:21:59 +0000 |
commit | 23b0464ea75f5713ebadda417f1fe8db20c76103 (patch) | |
tree | d6036941cc724d9943eaa096d5a8a104570bf059 /target/linux/ar71xx/files/arch | |
parent | c2beb5f892af9889d39f0f26cdcc8e1563264b44 (diff) | |
download | master-187ad058-23b0464ea75f5713ebadda417f1fe8db20c76103.tar.gz master-187ad058-23b0464ea75f5713ebadda417f1fe8db20c76103.tar.bz2 master-187ad058-23b0464ea75f5713ebadda417f1fe8db20c76103.zip |
ar71xx: fix MAC address swapping on WNR2200 and fix the WLAN MAC address
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47871 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/files/arch')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2200.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2200.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2200.c index a1de26a4b4..9f37f25e15 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2200.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2200.c @@ -42,8 +42,8 @@ #define WNR2200_KEYS_POLL_INTERVAL 20 /* msecs */ #define WNR2200_KEYS_DEBOUNCE_INTERVAL (3 * WNR2200_KEYS_POLL_INTERVAL) -#define WNR2200_MAC0_OFFSET 0 -#define WNR2200_MAC1_OFFSET 6 +#define WNR2200_MAC0_OFFSET 6 +#define WNR2200_MAC1_OFFSET 0 #define WNR2200_PCIE_CALDATA_OFFSET 0x1000 static struct gpio_led wnr2200_leds_gpio[] __initdata = { @@ -121,7 +121,8 @@ static void __init wnr2200_setup(void) ath79_register_eth(1); ath79_register_m25p80(NULL); - ap91_pci_init(art + WNR2200_PCIE_CALDATA_OFFSET, NULL); + ap91_pci_init(art + WNR2200_PCIE_CALDATA_OFFSET, + art + WNR2200_MAC0_OFFSET); ath79_register_leds_gpio(-1, ARRAY_SIZE(wnr2200_leds_gpio), wnr2200_leds_gpio); |