summaryrefslogtreecommitdiff
path: root/chip/npcx/gpio.c
diff options
context:
space:
mode:
authorphilipchen <philipchen@google.com>2016-06-25 15:32:11 -0700
committerchrome-bot <chrome-bot@chromium.org>2016-06-29 21:32:00 -0700
commit0cab97574be2a2d1be35af3985425f898df6a731 (patch)
tree8fc4299642e6b6eb7ea6b55a61c55b667af04adf /chip/npcx/gpio.c
parentf4e2d871300f7de66a85e7f01878bf155c5f91cc (diff)
downloadchrome-ec-0cab97574be2a2d1be35af3985425f898df6a731.tar.gz
Cleanup: gate RTC console/host command behind new config options
Put RTC code supporting console/host command behind new flags 'CONFIG_CMD_RTC'/'CONFIG_HOSTCMD_RTC' BUG=chromium:613699 TEST=make buildall BRANCH=master Change-Id: Ida52265d124978f48bd6ca522be3badee9f99588 Reviewed-on: https://chromium-review.googlesource.com/356206 Commit-Ready: Philip Chen <philipchen@chromium.org> Tested-by: Philip Chen <philipchen@chromium.org> Reviewed-by: Aseda Aboagye <aaboagye@chromium.org> Reviewed-by: Shawn N <shawnn@chromium.org>
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);
}