summaryrefslogtreecommitdiff
path: root/board/bolt/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/bolt/board.c')
-rw-r--r--board/bolt/board.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/board/bolt/board.c b/board/bolt/board.c
index bf59da6254..1de956c096 100644
--- a/board/bolt/board.c
+++ b/board/bolt/board.c
@@ -228,20 +228,3 @@ struct keyboard_scan_config keyscan_config = {
0xa4, 0xff, 0xf6, 0x55, 0xfa, 0xc8 /* full set */
},
};
-
-/**
- * Perform necessary actions on host wake events.
- */
-void board_process_wake_events(uint32_t active_wake_events)
-{
- uint32_t power_button_mask;
-
- power_button_mask = EC_HOST_EVENT_MASK(EC_HOST_EVENT_POWER_BUTTON);
-
- /* If there are other events aside from the power button press drive
- * the wake pin. Otherwise ensure it is high. */
- if (active_wake_events & ~power_button_mask)
- gpio_set_level(GPIO_PCH_WAKE_L, 0);
- else
- gpio_set_level(GPIO_PCH_WAKE_L, 1);
-}