mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 08:31:55 +00:00
a022135a19
STM32MP135 SoC embeds 9 GPIO banks of 16 gpios each. Those GPIO banks contain same features as STM32MP157 GPIO banks except that each GPIO line of the STM32MP135 can be secured. Signed-off-by: Alexandre Torgue <alexandre.torgue@foss.st.com> Acked-by: Arnd Bergmann <arnd@arndb.de Link: https://lore.kernel.org/r/20210723132810.25728-3-alexandre.torgue@foss.st.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
13 lines
493 B
Makefile
13 lines
493 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Core
|
|
obj-$(CONFIG_PINCTRL_STM32) += pinctrl-stm32.o
|
|
|
|
# SoC Drivers
|
|
obj-$(CONFIG_PINCTRL_STM32F429) += pinctrl-stm32f429.o
|
|
obj-$(CONFIG_PINCTRL_STM32F469) += pinctrl-stm32f469.o
|
|
obj-$(CONFIG_PINCTRL_STM32F746) += pinctrl-stm32f746.o
|
|
obj-$(CONFIG_PINCTRL_STM32F769) += pinctrl-stm32f769.o
|
|
obj-$(CONFIG_PINCTRL_STM32H743) += pinctrl-stm32h743.o
|
|
obj-$(CONFIG_PINCTRL_STM32MP135) += pinctrl-stm32mp135.o
|
|
obj-$(CONFIG_PINCTRL_STM32MP157) += pinctrl-stm32mp157.o
|