summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/mkbp_event.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/mkbp_event.c b/common/mkbp_event.c
index 4e965a9d05..b039afa631 100644
--- a/common/mkbp_event.c
+++ b/common/mkbp_event.c
@@ -52,7 +52,8 @@ void mkbp_send_event(uint8_t event_type)
* interrupt the AP if it is a wakeup event
* which is defined in the white list.
*/
- if (events & CONFIG_MKBP_WAKEUP_MASK)
+ if ((events & CONFIG_MKBP_WAKEUP_MASK) ||
+ (event_type == EC_MKBP_EVENT_KEY_MATRIX))
set_host_interrupt(1);
return;