mirror of
https://github.com/torvalds/linux.git
synced 2026-07-27 17:47:41 +02:00
pinctrl: Add OF dependency for PINCTRL_GENERIC_MUX
Add an explicit OF dependency for PINCTRL_GENERIC_MUX to ensure the generic mux support is only enabled when device tree is available. Also fix the stub implementation of pinctrl_generic_to_map() by correcting its last argument to match the non-stub prototype. Reported-by: kernel test robot <lkp@intel.com> Closes: https://lore.kernel.org/oe-kbuild-all/202604072013.aI84l57L-lkp@intel.com/ Signed-off-by: Frank Li <Frank.Li@nxp.com> Signed-off-by: Linus Walleij <linusw@kernel.org>
This commit is contained in:
parent
bdb939247b
commit
ea024873fe
|
|
@ -275,6 +275,7 @@ config PINCTRL_GEMINI
|
|||
config PINCTRL_GENERIC_MUX
|
||||
tristate "Generic Pinctrl driver by using multiplexer"
|
||||
depends on MULTIPLEXER
|
||||
depends on OF
|
||||
select PINMUX
|
||||
select GENERIC_PINCTRL
|
||||
help
|
||||
|
|
|
|||
|
|
@ -195,7 +195,7 @@ pinctrl_generic_to_map(struct pinctrl_dev *pctldev, struct device_node *parent,
|
|||
unsigned int *num_maps, unsigned int *num_reserved_maps,
|
||||
const char **group_name, unsigned int ngroups,
|
||||
const char **functions, unsigned int *pins,
|
||||
void *function_data)
|
||||
unsigned int npins)
|
||||
{
|
||||
return -ENOTSUPP;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user