summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmelie Delaunay <amelie.delaunay@foss.st.com>2026-03-17 13:06:54 +0300
committerLinus Walleij <linusw@kernel.org>2026-03-19 18:44:45 +0300
commitc8cfeb4b9dda2cdfce79519aee4aaff16310a7b6 (patch)
tree1e1b6131a6a85a93b2ff00ae24c02a00b46b5f00
parent4819c64e61779a77abac552558803e546657bdb5 (diff)
downloadlinux-c8cfeb4b9dda2cdfce79519aee4aaff16310a7b6.tar.xz
pinctrl: stm32: fix HDP driver dependency on GPIO_GENERIC
The HDP driver uses the generic GPIO chip API, but this configuration may not be enabled. Ensure it is enabled by selecting the appropriate option. Fixes: 4bcff9c05b9d ("pinctrl: stm32: use new generic GPIO chip API") Signed-off-by: Amelie Delaunay <amelie.delaunay@foss.st.com> Signed-off-by: Linus Walleij <linusw@kernel.org>
-rw-r--r--drivers/pinctrl/stm32/Kconfig1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pinctrl/stm32/Kconfig b/drivers/pinctrl/stm32/Kconfig
index 5f67e1ee66dd..d6a171523012 100644
--- a/drivers/pinctrl/stm32/Kconfig
+++ b/drivers/pinctrl/stm32/Kconfig
@@ -65,6 +65,7 @@ config PINCTRL_STM32_HDP
select PINMUX
select GENERIC_PINCONF
select GPIOLIB
+ select GPIO_GENERIC
help
The Hardware Debug Port allows the observation of internal signals.
It uses configurable multiplexer to route signals in a dedicated observation register.