summaryrefslogtreecommitdiff
path: root/board/meep
diff options
context:
space:
mode:
Diffstat (limited to 'board/meep')
-rw-r--r--board/meep/board.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/board/meep/board.c b/board/meep/board.c
index 12c08c3452..82f5eefca9 100644
--- a/board/meep/board.c
+++ b/board/meep/board.c
@@ -267,9 +267,14 @@ static void board_update_sensor_config_from_sku(void)
{
if (board_is_convertible()) {
motion_sensor_count = ARRAY_SIZE(motion_sensors);
+ /* Enable Base Accel interrupt */
+ gpio_enable_interrupt(GPIO_BASE_SIXAXIS_INT_L);
} else {
motion_sensor_count = 0;
tablet_disable_switch();
+ /* Base accel is not stuffed, don't allow line to float */
+ gpio_set_flags(GPIO_BASE_SIXAXIS_INT_L,
+ GPIO_INPUT | GPIO_PULL_DOWN);
}
}
@@ -288,14 +293,6 @@ static void cbi_init(void)
}
DECLARE_HOOK(HOOK_INIT, cbi_init, HOOK_PRIO_INIT_I2C + 1);
-/* Initialize board. */
-static void board_init(void)
-{
- /* Enable Base Accel interrupt */
- gpio_enable_interrupt(GPIO_BASE_SIXAXIS_INT_L);
-}
-DECLARE_HOOK(HOOK_INIT, board_init, HOOK_PRIO_DEFAULT);
-
void board_hibernate_late(void)
{
int i;