From ea9975c221151b9541458b2038593f5863889ee9 Mon Sep 17 00:00:00 2001 From: Conor Dooley Date: Fri, 30 Jan 2026 23:55:30 +0000 Subject: [PATCH] pinctrl: fix kismet issues with GENERIC_PINCTRL lkp reported that GENERIC_PINCTRL can be select when its dependencies are not. Swap the "depends on" out for "select", as is used in other parts of the pinctrl core that are expected to be selected by drivers. Fixes: 43722575e5cd ("pinctrl: add generic functions + pins mapper") Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202601271725.gqlQ8Jl7-lkp@intel.com/ Signed-off-by: Conor Dooley Reviewed-by: Arnd Bergmann Signed-off-by: Linus Walleij --- drivers/pinctrl/Kconfig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig index 6cc5e214f4f3..afecd9407f53 100644 --- a/drivers/pinctrl/Kconfig +++ b/drivers/pinctrl/Kconfig @@ -27,9 +27,9 @@ config GENERIC_PINCONF config GENERIC_PINCTRL bool - depends on GENERIC_PINCONF - depends on GENERIC_PINCTRL_GROUPS - depends on GENERIC_PINMUX_FUNCTIONS + select GENERIC_PINCONF + select GENERIC_PINCTRL_GROUPS + select GENERIC_PINMUX_FUNCTIONS config DEBUG_PINCTRL bool "Debug PINCTRL calls" -- 2.47.3