diff options
author | Patrick Delaunay <patrick.delaunay@foss.st.com> | 2021-10-22 20:12:34 +0200 |
---|---|---|
committer | Patrice Chotard <patrice.chotard@foss.st.com> | 2021-11-10 17:03:36 +0100 |
commit | 56a368f6610fec233e803367640cc8ea37251615 (patch) | |
tree | 73c59177d64e34e7b836124b917a8c5865818844 /arch/arm/Kconfig | |
parent | c67ca25dfc5c1da7359ab72cdf9b5e5a5579c162 (diff) | |
download | u-boot-56a368f6610fec233e803367640cc8ea37251615.tar.gz |
gpio: stm32: create include file for driver private data
The stm32 gpio driver private data are not needed in arch include files,
they are not used by code except for stm32 gpio and pincontrol drivers,
using the same IP; the defines for this IP is moved in a new file
"stm32_gpio_priv.h" in driver/gpio.
This patch avoids to have duplicated file gpio.h for each SOC
in MPU directory mach-stm32mp and in each MCU directory arch-stm32*
and allows to remove CONFIG_GPIO_EXTRA_HEADER for all STM32.
Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Diffstat (limited to 'arch/arm/Kconfig')
-rw-r--r-- | arch/arm/Kconfig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index b4808d4c75..9f20f32f3c 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1810,7 +1810,6 @@ config ARCH_STM32 select CPU_V7M select DM select DM_SERIAL - select GPIO_EXTRA_HEADER imply CMD_DM config ARCH_STI @@ -1836,7 +1835,6 @@ config ARCH_STM32MP select DM_GPIO select DM_RESET select DM_SERIAL - select GPIO_EXTRA_HEADER select MISC select OF_CONTROL select OF_LIBFDT |