summaryrefslogtreecommitdiff
path: root/common/hooks.c
diff options
context:
space:
mode:
authorNicolas Boichat <drinkcat@chromium.org>2018-02-01 11:33:25 +0800
committerchrome-bot <chrome-bot@chromium.org>2018-02-02 10:17:30 -0800
commit76927bdc5a17ddbdc9fc601b761c2a4984ecc1e9 (patch)
tree0ef346ffe19b05b9fddeb0320c244705c5686baf /common/hooks.c
parentc721ad9162b9fe20ce872c1d28cd8b1ad60e2c25 (diff)
downloadchrome-ec-76927bdc5a17ddbdc9fc601b761c2a4984ecc1e9.tar.gz
stm32/usb: Add HOOK_USB_PM_CHANGE, called when USB is resumed/suspended
In particular, this will allow touchpad driver and keyboard matrix scanning to be powered off/disabled when the USB interface is disabled without setting the remote wake feature (USB_REQ_FEATURE_DEVICE_REMOTE_WAKEUP), as events would be ignored anyway. BRANCH=none BUG=b:72683995 TEST=With next CLs, touchpad and keyboard matrix scanning are disabled when lid is closed. Change-Id: I3750bfaf8c31cde075adf9da4fef39753b8981c5 Signed-off-by: Nicolas Boichat <drinkcat@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/897067 Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
Diffstat (limited to 'common/hooks.c')
-rw-r--r--common/hooks.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/hooks.c b/common/hooks.c
index d83c7a36c8..6b4bb8873d 100644
--- a/common/hooks.c
+++ b/common/hooks.c
@@ -50,6 +50,9 @@ static const struct hook_ptrs hook_list[] = {
#ifdef CONFIG_CASE_CLOSED_DEBUG_V1
{__hooks_ccd_change, __hooks_ccd_change_end},
#endif
+#ifdef CONFIG_USB_SUSPEND
+ {__hooks_usb_change, __hooks_usb_change_end},
+#endif
{__hooks_tick, __hooks_tick_end},
{__hooks_second, __hooks_second_end},
};