diff options
Diffstat (limited to 'board')
-rw-r--r-- | board/glados/board.c | 2 | ||||
-rw-r--r-- | board/wheatley/board.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/board/glados/board.c b/board/glados/board.c index 70ed60a5bb..37e00dbc06 100644 --- a/board/glados/board.c +++ b/board/glados/board.c @@ -428,7 +428,7 @@ static void board_chipset_suspend(void) } DECLARE_HOOK(HOOK_CHIPSET_SUSPEND, board_chipset_suspend, HOOK_PRIO_DEFAULT); -void board_set_gpio_hibernate_state(void) +void board_hibernate_late(void) { /* Turn off LEDs in hibernate */ gpio_set_level(GPIO_CHARGE_LED_1, 0); diff --git a/board/wheatley/board.c b/board/wheatley/board.c index 537214b0d7..987bc6db6d 100644 --- a/board/wheatley/board.c +++ b/board/wheatley/board.c @@ -376,7 +376,7 @@ static void board_chipset_suspend(void) } DECLARE_HOOK(HOOK_CHIPSET_SUSPEND, board_chipset_suspend, HOOK_PRIO_DEFAULT); -void board_set_gpio_hibernate_state(void) +void board_hibernate_late(void) { int i; const uint32_t hibernate_pins[][2] = { |