summaryrefslogtreecommitdiff
path: root/common/x86_power.c
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2012-04-13 14:12:45 -0700
committerRandall Spangler <rspangler@chromium.org>2012-04-13 14:12:45 -0700
commitf6d9b193586209674cd585304df2e7ff58272ae7 (patch)
tree86736a2607d3571653d6c4e01edcdc1c97caad10 /common/x86_power.c
parent335af85983c4bf8eac17de3d4b06c7d0b5c8eca0 (diff)
downloadchrome-ec-f6d9b193586209674cd585304df2e7ff58272ae7.tar.gz
Remove DDR shunt signal, which is no longer present on proto1
Signed-off-by: Randall Spangler <rspangler@chromium.org> BUG=none TEST=power system on; should still boot Change-Id: I2e6c1f1cb4ffabf37d3113faca900da17c1353e9
Diffstat (limited to 'common/x86_power.c')
-rw-r--r--common/x86_power.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/common/x86_power.c b/common/x86_power.c
index f82b4ff0d3..8cb1daaa55 100644
--- a/common/x86_power.c
+++ b/common/x86_power.c
@@ -266,7 +266,6 @@ int x86_power_init(void)
gpio_set_level(GPIO_ENABLE_TOUCHPAD, 0);
gpio_set_level(GPIO_TOUCHSCREEN_RESETn, 0);
gpio_set_level(GPIO_ENABLE_1_5V_DDR, 0);
- gpio_set_level(GPIO_SHUNT_1_5V_DDR, 1);
gpio_set_level(GPIO_PCH_RSMRSTn, 0);
gpio_set_level(GPIO_PCH_DPWROK, 0);
}
@@ -330,7 +329,6 @@ void x86_power_task(void)
case X86_S5S3:
/* Turn on power to RAM */
- gpio_set_level(GPIO_SHUNT_1_5V_DDR, 0);
gpio_set_level(GPIO_ENABLE_1_5V_DDR, 1);
/* Enable touchpad power and take touchscreen out of
@@ -410,7 +408,6 @@ void x86_power_task(void)
/* Turn off power to RAM */
gpio_set_level(GPIO_ENABLE_1_5V_DDR, 0);
- gpio_set_level(GPIO_SHUNT_1_5V_DDR, 1);
state = X86_S5;
break;