summaryrefslogtreecommitdiff
path: root/board/fleex/board.c
diff options
context:
space:
mode:
authorWai-Hong Tam <waihong@google.com>2021-08-03 17:17:56 -0700
committerCommit Bot <commit-bot@chromium.org>2021-08-05 00:13:33 +0000
commit2eb53a39662b905c65015bafb5f73ab2324d369c (patch)
tree6352433557cdb05c75b1eef449c9ecf844bfc3d0 /board/fleex/board.c
parentfc016f2dce16d0555deee69e00ea5a626eb27f21 (diff)
downloadchrome-ec-2eb53a39662b905c65015bafb5f73ab2324d369c.tar.gz
lid_angle: Create a common callback for lid angle changes
Each board defines its own callback lid_angle_peripheral_enable(). The implementation is very similar. Create a common implementation and reduce the duplicated code. This CL removes the board callbacks which are identifical to the common callback. If it is slightly different, keep it and add the __override tag. The check of TEST_BUILD is unnecessary as the board callback is not linked in the test build. BRANCH=None BUG=b:194922043 TEST=Build all the images. Change-Id: I73d381730f35b80eff69399cdfc5fb54f839aee0 Signed-off-by: Wai-Hong Tam <waihong@google.com> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3069175 Reviewed-by: Aseda Aboagye <aaboagye@chromium.org>
Diffstat (limited to 'board/fleex/board.c')
-rw-r--r--board/fleex/board.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/board/fleex/board.c b/board/fleex/board.c
index 82081fed48..ac04d3304b 100644
--- a/board/fleex/board.c
+++ b/board/fleex/board.c
@@ -278,9 +278,8 @@ static void cbi_init(void)
}
DECLARE_HOOK(HOOK_INIT, cbi_init, HOOK_PRIO_INIT_I2C + 1);
-#ifndef TEST_BUILD
/* This callback disables keyboard when convertibles are fully open */
-void lid_angle_peripheral_enable(int enable)
+__override void lid_angle_peripheral_enable(int enable)
{
/*
* If the lid is in tablet position via other sensors,
@@ -292,7 +291,6 @@ void lid_angle_peripheral_enable(int enable)
if (board_is_convertible())
keyboard_scan_enable(enable, KB_SCAN_DISABLE_LID_ANGLE);
}
-#endif
void board_overcurrent_event(int port, int is_overcurrented)
{
@@ -333,4 +331,4 @@ int ppc_get_alert_status(int port)
return gpio_get_level(GPIO_USB_PD_C0_INT_ODL) == 0;
return gpio_get_level(GPIO_USB_PD_C1_INT_ODL) == 0;
-} \ No newline at end of file
+}