summaryrefslogtreecommitdiff
path: root/zephyr/projects/volteer/include/gpio_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/projects/volteer/include/gpio_map.h')
-rw-r--r--zephyr/projects/volteer/include/gpio_map.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/zephyr/projects/volteer/include/gpio_map.h b/zephyr/projects/volteer/include/gpio_map.h
index 8ef49c847b..6ed97a42e8 100644
--- a/zephyr/projects/volteer/include/gpio_map.h
+++ b/zephyr/projects/volteer/include/gpio_map.h
@@ -10,6 +10,7 @@
#include <gpio_signal.h>
#include "lid_switch.h"
+#include "power_button.h"
/*
* Without https://github.com/zephyrproject-rtos/zephyr/pull/29282, we need
@@ -54,7 +55,9 @@
* #define EC_CROS_GPIO_INTERRUPTS \
* GPIO_INT(NAMED_GPIO(h1_ec_pwr_btn_odl), GPIO_INT_EDGE_BOTH, button_print)
*/
-#define EC_CROS_GPIO_INTERRUPTS \
- GPIO_INT(GPIO_LID_OPEN, GPIO_INT_EDGE_BOTH, lid_interrupt)
+#define EC_CROS_GPIO_INTERRUPTS \
+ GPIO_INT(GPIO_LID_OPEN, GPIO_INT_EDGE_BOTH, lid_interrupt) \
+ GPIO_INT(GPIO_POWER_BUTTON_L, GPIO_INT_EDGE_BOTH, \
+ power_button_interrupt)
#endif /* __ZEPHYR_GPIO_MAP_H */