Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202601271725.gqlQ8Jl7-lkp@intel.com/
Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
Reviewed-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Linus Walleij <linusw@kernel.org>

authored by

Conor Dooley and committed by
Linus Walleij
ea9975c2 12966116

+3 -3
+3 -3
drivers/pinctrl/Kconfig
··· 27 27 28 28 config GENERIC_PINCTRL 29 29 bool 30 - depends on GENERIC_PINCONF 31 - depends on GENERIC_PINCTRL_GROUPS 32 - depends on GENERIC_PINMUX_FUNCTIONS 30 + select GENERIC_PINCONF 31 + select GENERIC_PINCTRL_GROUPS 32 + select GENERIC_PINMUX_FUNCTIONS 33 33 34 34 config DEBUG_PINCTRL 35 35 bool "Debug PINCTRL calls"