summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/board-ventana-power.c
diff options
context:
space:
mode:
authorVarun Wadekar <vwadekar@nvidia.com>2011-06-01 15:51:45 +0530
committerDan Willemsen <dwillemsen@nvidia.com>2011-11-30 21:46:18 -0800
commit1b071a8f2b56c4b97e0ff433c194fed8d5c982c2 (patch)
tree44b5bc3f3f0b296873d74853fbadf4ca948f9925 /arch/arm/mach-tegra/board-ventana-power.c
parent3f7be54906f0c4572fd875ad21e1b8430833da73 (diff)
arm: tegra: ventana: ldo4 must never be disabled
disabling ldo4 kills power to the board completely. there is no way to power on the board again, other than reinserting the power plug. Reviewed-on: http://git-master/r/#change,34692 (cherry picked from commit a556670031234ea910561b4a0de75a5741f6b1b6) Original-Change-Id: Id248811727cc7ca8f5ef2640f9a1d81a0217de05 Signed-off-by: Varun Wadekar <vwadekar@nvidia.com> Reviewed-on: http://git-master/r/35195 Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com> Rebase-Id: R8a2543048e33e74a83e9d9b58c43d7792d657bcc
Diffstat (limited to 'arch/arm/mach-tegra/board-ventana-power.c')
-rw-r--r--arch/arm/mach-tegra/board-ventana-power.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/board-ventana-power.c b/arch/arm/mach-tegra/board-ventana-power.c
index 08b04e5cf677..d98266cfce97 100644
--- a/arch/arm/mach-tegra/board-ventana-power.c
+++ b/arch/arm/mach-tegra/board-ventana-power.c
@@ -142,7 +142,7 @@ static struct regulator_init_data ldo0_data = REGULATOR_INIT(ldo0, 1250, 3300, O
static struct regulator_init_data ldo1_data = REGULATOR_INIT(ldo1, 725, 1500, ON, NULL);
static struct regulator_init_data ldo2_data = REGULATOR_INIT(ldo2, 725, 1500, OFF, NULL);
static struct regulator_init_data ldo3_data = REGULATOR_INIT(ldo3, 1250, 3300, OFF, NULL);
-static struct regulator_init_data ldo4_data = REGULATOR_INIT(ldo4, 1700, 2475, OFF, NULL);
+static struct regulator_init_data ldo4_data = REGULATOR_INIT(ldo4, 1700, 2475, ON, NULL);
static struct regulator_init_data ldo5_data = REGULATOR_INIT(ldo5, 1250, 3300, ON, NULL);
static struct regulator_init_data ldo6_data = REGULATOR_INIT(ldo6, 1800, 1800, OFF, NULL);
static struct regulator_init_data ldo7_data = REGULATOR_INIT(ldo7, 1250, 3300, OFF, NULL);