mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 00:14:05 +02:00
ar71xx: use gpio_request_one instead of ath79_set_usb_power_gpio
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34087 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
b4e8cdb713
commit
5758d2a8ee
@ -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)
|
||||
|
@ -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",
|
||||
|
@ -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);
|
||||
|
@ -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();
|
||||
}
|
||||
|
||||
|
@ -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();
|
||||
}
|
||||
|
||||
|
@ -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);
|
||||
|
@ -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),
|
||||
|
@ -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),
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user