diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-11-05 13:23:27 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-11-05 13:23:27 +0000 |
commit | f2528b1792230b39dca8f03ddabdc06c89b703b6 (patch) | |
tree | df34b6c94421e91228b5e8f7f87c40e878ef6c40 /target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr4300.c | |
parent | e8669729bc471f5d47585d584eae0a01145191b6 (diff) | |
download | upstream-f2528b1792230b39dca8f03ddabdc06c89b703b6.tar.gz upstream-f2528b1792230b39dca8f03ddabdc06c89b703b6.tar.bz2 upstream-f2528b1792230b39dca8f03ddabdc06c89b703b6.zip |
ar71xx: use gpio_request_one instead of ath79_set_usb_power_gpio
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 34087
Diffstat (limited to 'target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr4300.c')
-rw-r--r-- | target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr4300.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr4300.c b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr4300.c index 483aa6e935..7be29555dd 100644 --- a/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr4300.c +++ b/target/linux/ar71xx/files/arch/mips/ath79/mach-tl-wdr4300.c @@ -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(); } |