summaryrefslogtreecommitdiff
path: root/zephyr/projects/volteer/delbin/src/sensors.c
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/projects/volteer/delbin/src/sensors.c')
-rw-r--r--zephyr/projects/volteer/delbin/src/sensors.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/zephyr/projects/volteer/delbin/src/sensors.c b/zephyr/projects/volteer/delbin/src/sensors.c
deleted file mode 100644
index 8a052837f8..0000000000
--- a/zephyr/projects/volteer/delbin/src/sensors.c
+++ /dev/null
@@ -1,28 +0,0 @@
-/* Copyright 2021 The Chromium OS Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#include "chipset.h"
-#include "common.h"
-#include "keyboard_scan.h"
-#include "lid_angle.h"
-
-/* Delbin board specific sensor implementation */
-
-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);
- }
-}