summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2012-11-14 10:14:14 +0100
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2012-11-14 10:14:14 +0100
commit4315e6d56326651748822ef42179e8407ad2b87b (patch)
treebb8fd41aca8cc11bd3f62adc37e697892c0bb94d
parent003c46bfafa8ca4f4057888e12018bb22cae6458 (diff)
colibri_t20: do not power off USB phy in suspend
Since there is no PMC available in tegra2 we will not be able to get any remote wakeup events. Hence do not power of the phy during usb suspend. See c4a5c51e493a8d4154c15c95d2bd93b348090892.
-rw-r--r--arch/arm/mach-tegra/board-colibri_t20.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-tegra/board-colibri_t20.c b/arch/arm/mach-tegra/board-colibri_t20.c
index de58d1eb76e9..a945e9088294 100644
--- a/arch/arm/mach-tegra/board-colibri_t20.c
+++ b/arch/arm/mach-tegra/board-colibri_t20.c
@@ -781,7 +781,7 @@ static struct tegra_usb_platform_data tegra_ehci1_utmi_pdata = {
},
.u_data.host = {
.hot_plug = true,
- .power_off_on_suspend = true,
+ .power_off_on_suspend = false,
.remote_wakeup_supported = false,
.vbus_gpio = -1,
.vbus_reg = NULL,
@@ -863,7 +863,7 @@ static struct tegra_usb_platform_data tegra_ehci3_utmi_pdata = {
},
.u_data.host = {
.hot_plug = true,
- .power_off_on_suspend = true,
+ .power_off_on_suspend = false,
.remote_wakeup_supported = false,
.vbus_gpio = TEGRA_GPIO_PW2, /* USBH_PEN */
.vbus_gpio_inverted = 1,