summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--board/cr50/board.c2
-rw-r--r--chip/g/idle.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/board/cr50/board.c b/board/cr50/board.c
index fe23db81de..4c56281dbb 100644
--- a/board/cr50/board.c
+++ b/board/cr50/board.c
@@ -290,7 +290,7 @@ void pmu_wakeup_interrupt(void)
* Delay sleep long enough for a SPI slave transaction to start
* or for the system to be reset.
*/
- delay_sleep_by(3 * MINUTE);
+ delay_sleep_by(20 * SECOND);
/*
* If sys_rst_l or plt_rst_l (if signal is present) is
diff --git a/chip/g/idle.c b/chip/g/idle.c
index b376f14e82..0d4656a8c6 100644
--- a/chip/g/idle.c
+++ b/chip/g/idle.c
@@ -211,8 +211,8 @@ void __idle(void)
if (!idle_action)
idle_action = idle_default;
- /* Disable sleep until 3 minutes after init */
- delay_sleep_by(3 * MINUTE);
+ /* Disable sleep for 20 seconds after init */
+ delay_sleep_by(20 * SECOND);
while (1) {