ar71xx: init the LED pin for ath9k on the TL-MR3[24]20 boards
authorGabor Juhos <juhosg@openwrt.org>
Tue, 14 Dec 2010 18:01:04 +0000 (18:01 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Tue, 14 Dec 2010 18:01:04 +0000 (18:01 +0000)
SVN-Revision: 24569

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

index db415597eb152e606a2d8c2cc5a972aa03669a65..7e8ab4c21f011a93f53d067473826cd46a3a7e82 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);