ar71xx: use gpio_request_one instead of ath79_set_usb_power_gpio
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 5 Nov 2012 13:23:27 +0000 (13:23 +0000)
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Mon, 5 Nov 2012 13:23:27 +0000 (13:23 +0000)
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34087 3c298f89-4303-0410-b956-a3cf2f4a3e73

target/linux/ar71xx/files/arch/mips/ath79/mach-hornet-ub.c
target/linux/ar71xx/files/arch/mips/ath79/mach-tl-mr11u.c
target/linux/ar71xx/files/arch/mips/ath79/mach-tl-mr3020.c
target/linux/ar71xx/files/arch/mips/ath79/mach-tl-mr3x20.c
target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr4300.c
target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wr703n.c
target/linux/ar71xx/files/arch/mips/ath79/mach-wzr-hp-ag300h.c
target/linux/ar71xx/files/arch/mips/ath79/mach-wzr-hp-g300nh2.c
target/linux/ar71xx/files/arch/mips/ath79/mach-wzr-hp-g450h.c

index f8870e7..d2cfb09 100644 (file)
@@ -101,8 +101,9 @@ static void __init hornet_ub_gpio_setup(void)
        t |= AR933X_BOOTSTRAP_MDIO_GPIO_EN;
        ath79_reset_wr(AR933X_RESET_REG_BOOTSTRAP, t);
 
-       ath79_set_usb_power_gpio(HORNET_UB_GPIO_USB_POWER, GPIOF_OUT_INIT_HIGH,
-                               "USB power");
+       gpio_request_one(HORNET_UB_GPIO_USB_POWER,
+                        GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
+                        "USB power");
 }
 
 static void __init hornet_ub_setup(void)
index 6b28207..e13d02e 100644 (file)
@@ -109,8 +109,9 @@ static void __init tl_mr11u_setup(void)
        ath79_register_gpio_keys_polled(-1, TL_MR11U_KEYS_POLL_INTERVAL,
                                        ARRAY_SIZE(tl_mr11u_gpio_keys),
                                        tl_mr11u_gpio_keys);
-       ath79_set_usb_power_gpio(TL_MR11U_GPIO_USB_POWER, GPIOF_OUT_INIT_HIGH,
-                               "USB power");
+       gpio_request_one(TL_MR11U_GPIO_USB_POWER,
+                        GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
+                        "USB power");
 }
 
 MIPS_MACHINE(ATH79_MACH_TL_MR11U, "TL-MR11U", "TP-LINK TL-MR11U",
@@ -122,8 +123,9 @@ static void __init tl_mr3040_setup(void)
 
        ath79_register_gpio_keys_polled(-1, TL_MR11U_KEYS_POLL_INTERVAL,
                                        1, tl_mr11u_gpio_keys);
-       ath79_set_usb_power_gpio(TL_MR3040_GPIO_USB_POWER, GPIOF_OUT_INIT_HIGH,
-                               "USB power");
+       gpio_request_one(TL_MR3040_GPIO_USB_POWER,
+                        GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
+                        "USB power");
 }
 
 MIPS_MACHINE(ATH79_MACH_TL_MR3040, "TL-MR3040", "TP-LINK TL-MR3040",
index 8f37d7a..e0edbf8 100644 (file)
@@ -109,8 +109,9 @@ static void __init tl_mr3020_setup(void)
                                        ARRAY_SIZE(tl_mr3020_gpio_keys),
                                        tl_mr3020_gpio_keys);
 
-       ath79_set_usb_power_gpio(TL_MR3020_GPIO_USB_POWER, GPIOF_OUT_INIT_HIGH,
-                               "USB power");
+       gpio_request_one(TL_MR3020_GPIO_USB_POWER,
+                        GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
+                        "USB power");
        ath79_register_usb();
 
        ath79_init_mac(ath79_eth0_data.mac_addr, mac, 0);
index b35f09f..5924ac5 100644 (file)
@@ -102,8 +102,9 @@ static void __init tl_ap99_setup(void)
 static void __init tl_mr3x20_usb_setup(void)
 {
        /* enable power for the USB port */
-       ath79_set_usb_power_gpio(TL_MR3X20_GPIO_USB_POWER, GPIOF_OUT_INIT_HIGH,
-                               "USB power");
+       gpio_request_one(TL_MR3X20_GPIO_USB_POWER,
+                        GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
+                        "USB power");
        ath79_register_usb();
 }
 
index 483aa6e..7be2955 100644 (file)
@@ -175,10 +175,12 @@ static void __init wdr4300_setup(void)
        ath79_eth0_pll_data.pll_1000 = 0x06000000;
        ath79_register_eth(0);
 
-       ath79_set_usb_power_gpio(WDR4300_GPIO_USB1_POWER, GPIOF_OUT_INIT_HIGH,
-                               "USB1 power");
-       ath79_set_usb_power_gpio(WDR4300_GPIO_USB2_POWER, GPIOF_OUT_INIT_HIGH,
-                               "USB2 power");
+       gpio_request_one(WDR4300_GPIO_USB1_POWER,
+                        GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
+                        "USB1 power");
+       gpio_request_one(WDR4300_GPIO_USB2_POWER,
+                        GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
+                        "USB2 power");
        ath79_register_usb();
 }
 
index f60f962..dcd6fec 100644 (file)
@@ -69,8 +69,9 @@ static void __init tl_wr703n_setup(void)
                                        ARRAY_SIZE(tl_wr703n_gpio_keys),
                                        tl_wr703n_gpio_keys);
 
-       ath79_set_usb_power_gpio(TL_WR703N_GPIO_USB_POWER, GPIOF_OUT_INIT_HIGH,
-                               "USB power");
+       gpio_request_one(TL_WR703N_GPIO_USB_POWER,
+                        GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
+                        "USB power");
        ath79_register_usb();
 
        ath79_init_mac(ath79_eth0_data.mac_addr, mac, 0);
index 868514c..a7068e1 100644 (file)
@@ -185,7 +185,8 @@ static void __init wzrhpag300h_setup(void)
        ath79_register_eth(0);
        ath79_register_eth(1);
 
-       ath79_set_usb_power_gpio(2, GPIOF_OUT_INIT_HIGH, "USB power");
+       gpio_request_one(2, GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
+                        "USB power");
        ath79_register_usb();
 
        ath79_register_leds_gpio(-1, ARRAY_SIZE(wzrhpag300h_leds_gpio),
index 6c850ce..4087288 100644 (file)
@@ -158,7 +158,8 @@ static void __init wzrhpg300nh2_setup(void)
        ath79_register_eth(0);
 
        /* gpio13 is usb power.  Turn it on. */
-       ath79_set_usb_power_gpio(13, GPIOF_OUT_INIT_HIGH, "USB power");
+       gpio_request_one(13, GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
+                        "USB power");
        ath79_register_usb();
 
        ath79_register_leds_gpio(-1, ARRAY_SIZE(wzrhpg300nh2_leds_gpio),
index b5292db..2c28a55 100644 (file)
@@ -156,7 +156,8 @@ static void __init wzrhpg450h_init(void)
 
        ath79_register_eth(0);
 
-       ath79_set_usb_power_gpio(16, GPIOF_OUT_INIT_HIGH, "USB power");
+       gpio_request_one(16, GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
+                        "USB power");
        ath79_register_usb();
 
        ap91_pci_init(ee, NULL);