summaryrefslogtreecommitdiff
path: root/board/copano/sensors.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/copano/sensors.c')
-rw-r--r--board/copano/sensors.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/board/copano/sensors.c b/board/copano/sensors.c
index 4d7ccdcebb..6a483a5671 100644
--- a/board/copano/sensors.c
+++ b/board/copano/sensors.c
@@ -227,22 +227,3 @@ static void baseboard_sensors_init(void)
gpio_enable_interrupt(GPIO_EC_IMU_INT_L);
}
DECLARE_HOOK(HOOK_INIT, baseboard_sensors_init, HOOK_PRIO_DEFAULT);
-
-#ifndef TEST_BUILD
-void lid_angle_peripheral_enable(int enable)
-{
- int chipset_in_s0 = chipset_in_state(CHIPSET_STATE_ON);
-
- if (enable) {
- keyboard_scan_enable(1, KB_SCAN_DISABLE_LID_ANGLE);
- } else {
- /*
- * Ensure that the chipset is off before disabling the keyboard.
- * When the chipset is on, the EC keeps the keyboard enabled and
- * the AP decides whether to ignore input devices or not.
- */
- if (!chipset_in_s0)
- keyboard_scan_enable(0, KB_SCAN_DISABLE_LID_ANGLE);
- }
-}
-#endif