ar71xx: init the LED pin for ath9k on the TL-MR3[24]20 boards
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 14 Dec 2010 18:01:04 +0000 (18:01 +0000)
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 14 Dec 2010 18:01:04 +0000 (18:01 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24569 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/ar71xx/files/arch/mips/ar71xx/mach-tl-mr3x20.c

index db41559..7e8ab4c 100644 (file)
@@ -144,8 +144,21 @@ static void __init tl_mr3x20_setup(void)
 
        ap91_pci_init(ee, mac);
 }
-MIPS_MACHINE(AR71XX_MACH_TL_MR3420, "TL-MR3420", "TP-LINK TL-MR3420",
-            tl_mr3x20_setup);
+
+static void __init tl_mr3220_setup(void)
+{
+       tl_mr3x20_setup();
+       ap91_pci_setup_wmac_led_pin(1);
+}
 
 MIPS_MACHINE(AR71XX_MACH_TL_MR3220, "TL-MR3220", "TP-LINK TL-MR3220",
-            tl_mr3x20_setup);
+            tl_mr3220_setup);
+
+static void __init tl_mr3420_setup(void)
+{
+       tl_mr3x20_setup();
+       ap91_pci_setup_wmac_led_pin(0);
+}
+
+MIPS_MACHINE(AR71XX_MACH_TL_MR3420, "TL-MR3420", "TP-LINK TL-MR3420",
+            tl_mr3420_setup);