diff options
author | Keith Short <keithshort@chromium.org> | 2021-08-06 14:24:57 -0600 |
---|---|---|
committer | Commit Bot <commit-bot@chromium.org> | 2021-11-19 23:28:44 +0000 |
commit | f2809b72c935beb26e1b29f6fa01fb851cadc492 (patch) | |
tree | 965d74aba514632e71314db8c4287d67897f05df /chip/npcx/gpio-npcx9.c | |
parent | b91e9c7c83f47c392c94f571d699e94dd568797f (diff) | |
download | chrome-ec-f2809b72c935beb26e1b29f6fa01fb851cadc492.tar.gz |
config: rename CONFIG_HOSTCMD_ESPI to CONFIG_HOST_INTERFACE_ESPI
Rename CONFIG_HOSTCMD_ESPI to CONFIG_HOST_INTERFACE_ESPI. This makes the
host interface selection configs distinct from configs used to
enable/disable specific host commands.
BUG=b:195416058
BRANCH=main
TEST=compare_build.sh
Signed-off-by: Keith Short <keithshort@chromium.org>
Change-Id: I7f52614ca9a0dd54cc7e96e51bba40453564198e
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3095842
Tested-by: Michał Barnaś <mb@semihalf.com>
Diffstat (limited to 'chip/npcx/gpio-npcx9.c')
-rw-r--r-- | chip/npcx/gpio-npcx9.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chip/npcx/gpio-npcx9.c b/chip/npcx/gpio-npcx9.c index e9e8ad2ad9..c5b7e900f7 100644 --- a/chip/npcx/gpio-npcx9.c +++ b/chip/npcx/gpio-npcx9.c @@ -70,7 +70,7 @@ static void __gpio_host_interrupt(void) SET_BIT(NPCX_WKPCL(MIWU_TABLE_0, MIWU_GROUP_5), 6); return; } - if (IS_ENABLED(CONFIG_HOSTCMD_ESPI)) { + if (IS_ENABLED(CONFIG_HOST_INTERFACE_ESPI)) { if (IS_BIT_SET(NPCX_WKEN(MIWU_TABLE_0, MIWU_GROUP_5), 5) && IS_BIT_SET(NPCX_WKPND(MIWU_TABLE_0, MIWU_GROUP_5), 5)) { |