Author: nbd Date: 2015-12-11 22:12:04 +0100 (Fri, 11 Dec 2015) New Revision: 47873
Modified: trunk/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2200.c Log: ar71xx: on wnr2200, revert the mac0/mac1, the ethernet interfaces are swapped. use MAC1 for wlan Signed-off-by: Felix Fietkau <[email protected]> Modified: trunk/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2200.c =================================================================== --- trunk/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2200.c 2015-12-11 19:22:15 UTC (rev 47872) +++ trunk/target/linux/ar71xx/files/arch/mips/ath79/mach-wnr2200.c 2015-12-11 21:12:04 UTC (rev 47873) @@ -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 6 -#define WNR2200_MAC1_OFFSET 0 +#define WNR2200_MAC0_OFFSET 0 +#define WNR2200_MAC1_OFFSET 6 #define WNR2200_PCIE_CALDATA_OFFSET 0x1000 static struct gpio_led wnr2200_leds_gpio[] __initdata = { @@ -122,7 +122,7 @@ ath79_register_m25p80(NULL); ap91_pci_init(art + WNR2200_PCIE_CALDATA_OFFSET, - art + WNR2200_MAC0_OFFSET); + art + WNR2200_MAC1_OFFSET); ath79_register_leds_gpio(-1, ARRAY_SIZE(wnr2200_leds_gpio), wnr2200_leds_gpio); _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
