Skip to content

Commit ea9975c

Browse files
ConchuODlinusw
authored andcommitted
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: 4372257 ("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>
1 parent 1296611 commit ea9975c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

drivers/pinctrl/Kconfig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ config GENERIC_PINCONF
2727

2828
config GENERIC_PINCTRL
2929
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
3333

3434
config DEBUG_PINCTRL
3535
bool "Debug PINCTRL calls"

0 commit comments

Comments
 (0)