summaryrefslogtreecommitdiff
path: root/common/hooks.c
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2017-09-01 09:55:18 -0700
committerchrome-bot <chrome-bot@chromium.org>2017-09-01 16:41:55 -0700
commit29d8cc67c35c0e8d17400202fb548707bf448218 (patch)
tree9c281fc5725c2e442881063a3f6068ed23e84a84 /common/hooks.c
parent536c1e34494afd508552ad29b07d08eeaa3e4b5f (diff)
downloadchrome-ec-29d8cc67c35c0e8d17400202fb548707bf448218.tar.gz
Clean up CONFIG_CASE_CLOSED_DEBUG usage
CCD_CHANGE_HOOK should use CONFIG_CASE_CLOSED_DEBUG_V1. All boards which use chip/g either use both CONFIG_USB_SERIALNO and CONFIG_CASE_CLOSED_DEBUG or neither of them, so just depend on CONFIG_USB_SERIALNO. This is in preparation for making common/case_closed_debug refer only to the usb_pd_protocol version (with mode=disabled/partial/enabled), and cr50 will have its own version (with only enabled/disabled, and tied more closely to CCD config). No functionality changes. BUG=none BRANCH=cr50 TEST=make buildall -j; boot cr50 and see change hook called Change-Id: I1985c8c48c1a85fed4549402a7b47b8a9cf135d7 Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/648067 Reviewed-by: Mary Ruthven <mruthven@chromium.org>
Diffstat (limited to 'common/hooks.c')
-rw-r--r--common/hooks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/hooks.c b/common/hooks.c
index 27ee1c422f..d83c7a36c8 100644
--- a/common/hooks.c
+++ b/common/hooks.c
@@ -47,7 +47,7 @@ static const struct hook_ptrs hook_list[] = {
{__hooks_tablet_mode_change, __hooks_tablet_mode_change_end},
{__hooks_pwrbtn_change, __hooks_pwrbtn_change_end},
{__hooks_battery_soc_change, __hooks_battery_soc_change_end},
-#ifdef CONFIG_CASE_CLOSED_DEBUG
+#ifdef CONFIG_CASE_CLOSED_DEBUG_V1
{__hooks_ccd_change, __hooks_ccd_change_end},
#endif
{__hooks_tick, __hooks_tick_end},