From 7551e8f57f9b5b325fa00860f55bb236ff48c4e5 Mon Sep 17 00:00:00 2001 From: Vincent Palatin Date: Wed, 7 Nov 2012 07:41:55 -0800 Subject: x86: set hibernation delay to 1 hour When the system is in S5, it will go to hibernate mode after 1 hour instead of 24 hours. Signed-off-by: Vincent Palatin BRANCH=link BUG=none TEST=on Link DVT3 with servo connected, turn off the machine and see the EC going to hibernate after 1 hour (according to EC UART traces) start the machine and see it boot properly. Change-Id: I1da87b3e09b90817ce5609f3f74b5969235fb90a Reviewed-on: https://gerrit.chromium.org/gerrit/37526 Reviewed-by: Duncan Laurie Tested-by: Vincent Palatin Commit-Ready: Vincent Palatin --- common/x86_power.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/x86_power.c b/common/x86_power.c index 7165bff499..2bbe8e469e 100644 --- a/common/x86_power.c +++ b/common/x86_power.c @@ -105,7 +105,7 @@ static int throttle_cpu; /* Throttle CPU? */ /* When did we enter G3? */ static uint64_t last_shutdown_time; /* Delay before go into hibernation in seconds*/ -static uint32_t hibernate_delay = 86400; /* 24 Hrs */ +static uint32_t hibernate_delay = 3600; /* 1 Hour */ /** * Update input signal state. -- cgit v1.2.1