diff options
author | Zheng Bin <zhengbin13@huawei.com> | 2022-03-25 10:44:50 +0300 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2022-03-25 23:14:58 +0300 |
commit | 44e445ed9413596760284c88870e25a1be0261ff (patch) | |
tree | 3dd0360e6b13b5225e3f4bc9b903933d8efdf5cc /drivers/pinctrl | |
parent | 168a0abf05a8da919397552d9cd2a798c4104e8a (diff) | |
download | linux-44e445ed9413596760284c88870e25a1be0261ff.tar.xz |
pinctrl: nuvoton: wpcm450: Fix build error without OF
If OF is not set, bulding fails:
drivers/pinctrl/nuvoton/pinctrl-wpcm450.o: In function `wpcm450_dt_node_to_map':
pinctrl-wpcm450.c:(.text+0x404): undefined reference to `pinconf_generic_dt_node_to_map'
Make PINCTRL_WPCM450 depends on OF to fix this.
Fixes: a1d1e0e3d80a ("pinctrl: nuvoton: Add driver for WPCM450")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
Link: https://lore.kernel.org/r/20220325074450.3228840-1-zhengbin13@huawei.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r-- | drivers/pinctrl/nuvoton/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pinctrl/nuvoton/Kconfig b/drivers/pinctrl/nuvoton/Kconfig index b48d32912bef..852b0d0eb08e 100644 --- a/drivers/pinctrl/nuvoton/Kconfig +++ b/drivers/pinctrl/nuvoton/Kconfig @@ -3,6 +3,7 @@ config PINCTRL_WPCM450 tristate "Pinctrl and GPIO driver for Nuvoton WPCM450" depends on ARCH_WPCM450 || COMPILE_TEST + depends on OF select PINMUX select PINCONF select GENERIC_PINCONF |