1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-10-01 11:03:15 +03:00

ramips: enable USB power on the DIR-645

Closes #12422.

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34082 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2012-11-05 11:04:45 +00:00
parent 7692f8ee59
commit 63e3e838a1

View File

@ -14,6 +14,7 @@
#include <linux/ethtool.h>
#include <linux/rt2x00_platform.h>
#include <linux/spi/spi.h>
#include <linux/gpio.h>
#include <asm/mach-ralink/machine.h>
#include <asm/mach-ralink/dev-gpio-buttons.h>
@ -113,6 +114,10 @@ static void __init dir_645_gpio_init(void)
RT3883_GPIO_MODE_UART0(RT3883_GPIO_MODE_GPIO) |
RT3883_GPIO_MODE_JTAG |
RT3883_GPIO_MODE_PCI(RT3883_GPIO_MODE_PCI_FNC));
gpio_request_one(DIR_645_GPIO_USB_POWER,
GPIOF_OUT_INIT_HIGH | GPIOF_EXPORT_DIR_FIXED,
"USB power");
}
static void __init dir_645_init(void)