summaryrefslogtreecommitdiff
path: root/board/cerise/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/cerise/board.c')
-rw-r--r--board/cerise/board.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/board/cerise/board.c b/board/cerise/board.c
index a4fcc7490f..4d449496c1 100644
--- a/board/cerise/board.c
+++ b/board/cerise/board.c
@@ -453,16 +453,3 @@ int board_get_charger_i2c(void)
/* TODO(b:138415463): confirm the bus allocation for future builds */
return board_get_version() == 1 ? 2 : 1;
}
-
-/* Enable or disable input devices, based on chipset state and tablet mode */
-#ifndef TEST_BUILD
-void lid_angle_peripheral_enable(int enable)
-{
- /* If the lid is in 360 position, ignore the lid angle,
- * which might be faulty. Disable keyboard.
- */
- if (tablet_get_mode() || chipset_in_state(CHIPSET_STATE_ANY_OFF))
- enable = 0;
- keyboard_scan_enable(enable, KB_SCAN_DISABLE_LID_ANGLE);
-}
-#endif