pinctrl: fix allmodconfig noise
There was some mess in the dependencies in the pinctrl Kconfig for compile tests under allmodconfig. Mea Culpa. Reported-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
bb0fd7ab09
commit
b99e6fb865
3 changed files with 8 additions and 2 deletions
|
@ -95,9 +95,11 @@ config PINCTRL_FALCON
|
||||||
|
|
||||||
config PINCTRL_MESON
|
config PINCTRL_MESON
|
||||||
bool
|
bool
|
||||||
|
depends on OF
|
||||||
select PINMUX
|
select PINMUX
|
||||||
select PINCONF
|
select PINCONF
|
||||||
select GENERIC_PINCONF
|
select GENERIC_PINCONF
|
||||||
|
select GPIOLIB
|
||||||
select OF_GPIO
|
select OF_GPIO
|
||||||
select REGMAP_MMIO
|
select REGMAP_MMIO
|
||||||
|
|
||||||
|
@ -229,7 +231,8 @@ config PINCTRL_XWAY
|
||||||
|
|
||||||
config PINCTRL_TB10X
|
config PINCTRL_TB10X
|
||||||
bool
|
bool
|
||||||
depends on ARC_PLAT_TB10X
|
depends on OF && ARC_PLAT_TB10X
|
||||||
|
select GPIOLIB
|
||||||
|
|
||||||
endmenu
|
endmenu
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@ if ARCH_MEDIATEK || COMPILE_TEST
|
||||||
|
|
||||||
config PINCTRL_MTK_COMMON
|
config PINCTRL_MTK_COMMON
|
||||||
bool
|
bool
|
||||||
|
depends on OF
|
||||||
select PINMUX
|
select PINMUX
|
||||||
select GENERIC_PINCONF
|
select GENERIC_PINCONF
|
||||||
select GPIOLIB
|
select GPIOLIB
|
||||||
|
@ -10,12 +11,14 @@ config PINCTRL_MTK_COMMON
|
||||||
# For ARMv7 SoCs
|
# For ARMv7 SoCs
|
||||||
config PINCTRL_MT8135
|
config PINCTRL_MT8135
|
||||||
bool "Mediatek MT8135 pin control" if COMPILE_TEST && !MACH_MT8135
|
bool "Mediatek MT8135 pin control" if COMPILE_TEST && !MACH_MT8135
|
||||||
|
depends on OF
|
||||||
default MACH_MT8135
|
default MACH_MT8135
|
||||||
select PINCTRL_MTK_COMMON
|
select PINCTRL_MTK_COMMON
|
||||||
|
|
||||||
# For ARMv8 SoCs
|
# For ARMv8 SoCs
|
||||||
config PINCTRL_MT8173
|
config PINCTRL_MT8173
|
||||||
bool "Mediatek MT8173 pin control"
|
bool "Mediatek MT8173 pin control"
|
||||||
|
depends on OF
|
||||||
depends on ARM64 || COMPILE_TEST
|
depends on ARM64 || COMPILE_TEST
|
||||||
default ARM64 && ARCH_MEDIATEK
|
default ARM64 && ARCH_MEDIATEK
|
||||||
select PINCTRL_MTK_COMMON
|
select PINCTRL_MTK_COMMON
|
||||||
|
|
|
@ -30,9 +30,9 @@ if (ARCH_U8500 || ARCH_NOMADIK)
|
||||||
config PINCTRL_NOMADIK
|
config PINCTRL_NOMADIK
|
||||||
bool "Nomadik pin controller driver"
|
bool "Nomadik pin controller driver"
|
||||||
depends on ARCH_U8500 || ARCH_NOMADIK
|
depends on ARCH_U8500 || ARCH_NOMADIK
|
||||||
|
depends on OF && GPIOLIB
|
||||||
select PINMUX
|
select PINMUX
|
||||||
select PINCONF
|
select PINCONF
|
||||||
select GPIOLIB
|
|
||||||
select OF_GPIO
|
select OF_GPIO
|
||||||
select GPIOLIB_IRQCHIP
|
select GPIOLIB_IRQCHIP
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue