8c6e801250
The pinctrl driver actually uses SYSCON, so 'depends on' should be used instead of 'select'. SYSCON should be selected in SoC config instead, just like other SoC do. This breaks Kconfig dependency loop for configs that indirectly depends on SYSCON and causes PINCTRL to be selected. Signed-off-by: Patryk Duda <patrykd@google.com>
11 lines
355 B
Plaintext
11 lines
355 B
Plaintext
# Copyright (c) 2022 Henrik Brix Andersen <henrik@brixandersen.dk>
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config PINCTRL_XLNX_ZYNQ
|
|
bool "Xilinx Zynq 7000 processor system MIO pin controller driver"
|
|
default y
|
|
depends on DT_HAS_XLNX_PINCTRL_ZYNQ_ENABLED
|
|
depends on SYSCON
|
|
help
|
|
Enable the Xilinx Zynq 7000 processor system MIO pin controller driver.
|