From 3c86a3c2b0914ae58a944077e8a5ee66c073b22b Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Wed, 5 Jan 2022 23:09:41 +0800 Subject: [PATCH] input: Remove prompt string from INPUT_MOUSE to ensure this option can only be enabled by select in Kconfig Signed-off-by: Xiang Xiao --- boards/sim/sim/sim/configs/lvgl/defconfig | 1 - drivers/input/Kconfig | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/boards/sim/sim/sim/configs/lvgl/defconfig b/boards/sim/sim/sim/configs/lvgl/defconfig index 17189757f50..1aad7247fdf 100644 --- a/boards/sim/sim/sim/configs/lvgl/defconfig +++ b/boards/sim/sim/sim/configs/lvgl/defconfig @@ -30,7 +30,6 @@ CONFIG_GRAPHICS_LVGL=y CONFIG_IDLETHREAD_STACKSIZE=4096 CONFIG_INIT_ENTRYPOINT="lvgldemo_main" CONFIG_INPUT=y -CONFIG_INPUT_MOUSE=y CONFIG_LV_COLOR_DEPTH=32 CONFIG_LV_HOR_RES=640 CONFIG_LV_VER_RES=480 diff --git a/drivers/input/Kconfig b/drivers/input/Kconfig index 8688041ca74..74f9b89c267 100644 --- a/drivers/input/Kconfig +++ b/drivers/input/Kconfig @@ -14,7 +14,7 @@ menuconfig INPUT if INPUT config INPUT_MOUSE - bool "Enable mouse support" + bool default n ---help--- Enable support for mouse devices.