2
0
mirror of https://github.com/edk2-porting/linux-next.git synced 2024-12-27 14:43:58 +08:00
linux-next/drivers/pinctrl/berlin/Kconfig
Antoine Tenart d02f997d61 pinctrl: berlin: select the pinctrl driver according to the SoC used
This patch prepares to remove the pinctrl driver selection from the
mach-berlin Kconfig. To do so, bool is replaced by def_bool.

Signed-off-by: Antoine Tenart <antoine.tenart@free-electrons.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
2015-10-16 16:18:27 +02:00

26 lines
453 B
Plaintext

if (ARCH_BERLIN || COMPILE_TEST)
config PINCTRL_BERLIN
bool
select PINMUX
select REGMAP_MMIO
config PINCTRL_BERLIN_BG2
def_bool MACH_BERLIN_BG2
select PINCTRL_BERLIN
config PINCTRL_BERLIN_BG2CD
def_bool MACH_BERLIN_BG2CD
select PINCTRL_BERLIN
config PINCTRL_BERLIN_BG2Q
def_bool MACH_BERLIN_BG2Q
select PINCTRL_BERLIN
config PINCTRL_BERLIN_BG4CT
bool "Marvell berlin4ct pin controller driver"
depends on OF
select PINCTRL_BERLIN
endif