summaryrefslogtreecommitdiff
path: root/chip/npcx/gpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/npcx/gpio.c')
-rw-r--r--chip/npcx/gpio.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/chip/npcx/gpio.c b/chip/npcx/gpio.c
index fb95f101f1..edd9597aad 100644
--- a/chip/npcx/gpio.c
+++ b/chip/npcx/gpio.c
@@ -805,11 +805,13 @@ void __gpio_wk0efgh_interrupt(void)
void __gpio_rtc_interrupt(void)
{
/* Check pending bit 7 */
+#ifdef CONFIG_HOSTCMD_RTC
if (NPCX_WKPND(MIWU_TABLE_0, MIWU_GROUP_4) & 0x80) {
/* Clear pending bit for WUI */
SET_BIT(NPCX_WKPCL(MIWU_TABLE_0, MIWU_GROUP_4), 7);
host_set_events(EC_HOST_EVENT_MASK(EC_HOST_EVENT_RTC));
} else
+#endif
gpio_interrupt(NPCX_IRQ_MTC_WKINTAD_0);
}