summaryrefslogtreecommitdiff
path: root/chip/nrf51
diff options
context:
space:
mode:
authorShawn Nematbakhsh <shawnn@chromium.org>2016-02-17 10:15:56 -0800
committerchrome-bot <chrome-bot@chromium.org>2016-02-17 15:33:07 -0800
commitc505edb0b5f3ed329338047127f356733ab72184 (patch)
tree319acb94c31dc62c2c9bfb0ea2134fc4784933c4 /chip/nrf51
parentebe37f0008af291a1a536ae9012cc370498fb818 (diff)
downloadchrome-ec-c505edb0b5f3ed329338047127f356733ab72184.tar.gz
hibernate: Inform PD MCU before calling board hibernate callback
board_hibernate() may take alternate actions to place the chip into hibernate, so inform the PD MCU that we're going to hibernate before calling the function. BUG=None TEST=Run 'hibernate' on chell, verify that PD MCU goes to hibernate and wakes when AC is attached. BRANCH=glados Change-Id: I71c12dcb416d54c79ac7d40e9bf430e268071fb2 Signed-off-by: Shawn Nematbakhsh <shawnn@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/327613 Commit-Ready: Shawn N <shawnn@chromium.org> Tested-by: Shawn N <shawnn@chromium.org> Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
Diffstat (limited to 'chip/nrf51')
-rw-r--r--chip/nrf51/system.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/chip/nrf51/system.c b/chip/nrf51/system.c
index 7c6e6b1347..94c36202e4 100644
--- a/chip/nrf51/system.c
+++ b/chip/nrf51/system.c
@@ -33,12 +33,12 @@ const char *system_get_chip_revision(void)
void system_hibernate(uint32_t seconds, uint32_t microseconds)
{
- if (board_hibernate)
- board_hibernate();
-
/* Flush console before hibernating */
cflush();
+ if (board_hibernate)
+ board_hibernate();
+
/* chip specific standby mode */
CPRINTS("TODO: implement %s()", __func__);
}