mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 14:28:55 +07:00
b99e6fb865
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>
27 lines
514 B
Plaintext
27 lines
514 B
Plaintext
if ARCH_MEDIATEK || COMPILE_TEST
|
|
|
|
config PINCTRL_MTK_COMMON
|
|
bool
|
|
depends on OF
|
|
select PINMUX
|
|
select GENERIC_PINCONF
|
|
select GPIOLIB
|
|
select OF_GPIO
|
|
|
|
# For ARMv7 SoCs
|
|
config PINCTRL_MT8135
|
|
bool "Mediatek MT8135 pin control" if COMPILE_TEST && !MACH_MT8135
|
|
depends on OF
|
|
default MACH_MT8135
|
|
select PINCTRL_MTK_COMMON
|
|
|
|
# For ARMv8 SoCs
|
|
config PINCTRL_MT8173
|
|
bool "Mediatek MT8173 pin control"
|
|
depends on OF
|
|
depends on ARM64 || COMPILE_TEST
|
|
default ARM64 && ARCH_MEDIATEK
|
|
select PINCTRL_MTK_COMMON
|
|
|
|
endif
|