diff options
| author | Tom Rini <[email protected]> | 2026-03-16 19:24:41 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-03-30 15:02:27 -0600 |
| commit | 1d5d6789e39ce6786a6ce60ceb8980458f2b4e6e (patch) | |
| tree | cfc296351376df8fb0dabe344da1f398b849d7bf /drivers | |
| parent | 81fff1704fc38171bf6fc34c7fc0f25e93d2e2b0 (diff) | |
pinctrl: Correct dependencies for PINCTRL_TH1520
As exposed by "make randconfig", we have an issue with the dependencies
for PINCTRL_TH1520. It really needs to depend on PINCTRL_GENERIC rather
than select it, and PINCTRL_GENERIC in turn already depends on
PINCTRL_FULL.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/pinctrl/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig index d9d4f7ceb83..578edbf8168 100644 --- a/drivers/pinctrl/Kconfig +++ b/drivers/pinctrl/Kconfig @@ -354,7 +354,7 @@ config SPL_PINCTRL_STMFX config PINCTRL_TH1520 bool "T-Head TH1520 pinctrl driver" - depends on DM && PINCTRL_FULL + depends on DM && PINCTRL_GENERIC select PINCONF help Support pin multiplexing and configuration control blocks on the |
