mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 13:14:27 +00:00
3f3946d30d
Armada pinctrl drivers shall not be compiled without the entire pinctrl framework and thus lack a "depends on" condition, otherwise the driver will simply not be probed. Signed-off-by: Miquel Raynal <miquel.raynal@free-electrons.com> Signed-off-by: Stefan Roese <sr@denx.de>
17 lines
428 B
Text
17 lines
428 B
Text
if ARCH_MVEBU
|
|
|
|
config PINCTRL_ARMADA_37XX
|
|
depends on ARMADA_3700 && PINCTRL_FULL
|
|
bool "Armada 37xx pin control driver"
|
|
help
|
|
Support pin multiplexing and pin configuration control on
|
|
Marvell's Armada-37xx SoC.
|
|
|
|
config PINCTRL_ARMADA_8K
|
|
depends on ARMADA_8K && PINCTRL_FULL
|
|
bool "Armada 7k/8k pin control driver"
|
|
help
|
|
Support pin multiplexing and pin configuration control on
|
|
Marvell's Armada-8K SoC.
|
|
|
|
endif
|