Staging
v0.5.2
https://github.com/torvalds/linux
Raw File
Tip revision: 3e5de27e940d00d8d504dfb96625fb654f641509 authored by Linus Torvalds on 04 December 2016, 20:50:51 UTC
Linux 4.9-rc8
Tip revision: 3e5de27
Kconfig
if ARCH_STM32 || COMPILE_TEST

config PINCTRL_STM32
	bool
	depends on OF
	select PINMUX
	select GENERIC_PINCONF
	select GPIOLIB
	select MFD_SYSCON

config PINCTRL_STM32F429
	bool "STMicroelectronics STM32F429 pin control" if COMPILE_TEST && !MACH_STM32F429
	depends on OF && IRQ_DOMAIN_HIERARCHY
	default MACH_STM32F429
	select PINCTRL_STM32

config PINCTRL_STM32F746
	bool "STMicroelectronics STM32F746 pin control" if COMPILE_TEST && !MACH_STM32F746
	depends on OF && IRQ_DOMAIN_HIERARCHY
	default MACH_STM32F746
	select PINCTRL_STM32

endif
back to top