summaryrefslogtreecommitdiff
path: root/include/link_defs.h
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 /include/link_defs.h
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 'include/link_defs.h')
-rw-r--r--include/link_defs.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/link_defs.h b/include/link_defs.h
index 9e621ebce7..c12a350924 100644
--- a/include/link_defs.h
+++ b/include/link_defs.h
@@ -58,6 +58,10 @@ extern const struct hook_data __hooks_battery_soc_change_end[];
extern const struct hook_data __hooks_ccd_change[];
extern const struct hook_data __hooks_ccd_change_end[];
#endif
+#ifdef CONFIG_USB_SUSPEND
+extern const struct hook_data __hooks_usb_change[];
+extern const struct hook_data __hooks_usb_change_end[];
+#endif
extern const struct hook_data __hooks_tick[];
extern const struct hook_data __hooks_tick_end[];
extern const struct hook_data __hooks_second[];