From 2f352788c13294f842654a1bdcd243fdf051ae3b Mon Sep 17 00:00:00 2001 From: Pete Johanson Date: Thu, 28 Jan 2021 11:53:18 -0500 Subject: [PATCH] refactor(kscan): Remove explicit default n from kscan configs. * Actually allow defaulting yes in other places. --- app/Kconfig | 2 -- app/drivers/kscan/Kconfig | 2 -- 2 files changed, 4 deletions(-) diff --git a/app/Kconfig b/app/Kconfig index 737895c7..aa6143ce 100644 --- a/app/Kconfig +++ b/app/Kconfig @@ -337,11 +337,9 @@ config ZMK_KSCAN_EVENT_QUEUE_SIZE config ZMK_KSCAN_MOCK_DRIVER bool "Enable mock kscan driver to simulate key presses" - default n config ZMK_KSCAN_COMPOSITE_DRIVER bool "Enable composite kscan driver to combine kscan devices" - default n #KSCAN Settings endmenu diff --git a/app/drivers/kscan/Kconfig b/app/drivers/kscan/Kconfig index 654e0ee4..dc3580d5 100644 --- a/app/drivers/kscan/Kconfig +++ b/app/drivers/kscan/Kconfig @@ -10,11 +10,9 @@ if ZMK_KSCAN_GPIO_DRIVER config ZMK_KSCAN_MATRIX_POLLING bool "Poll for key event triggers instead of using interrupts on matrix boards." - default n config ZMK_KSCAN_DIRECT_POLLING bool "Poll for key event triggers instead of using interrupts on direct wired boards." - default n endif