Message ID | 1491568984-20169-7-git-send-email-alexandre.torgue@st.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Fri, Apr 7, 2017 at 2:43 PM, Alexandre TORGUE <alexandre.torgue@st.com> wrote: > This patch introduces the MACH_STM32F469 to make possible to only select > STM32F469 pinctrl driver > > By default, all the MACH_STM32Fxxx flags will be set with STM32 defconfig. > > Signed-off-by: Alexandre TORGUE <alexandre.torgue@st.com> Acked-by: Linus Walleij <linus.walleij@linaro.org> Please funnel this through the ARM SoC tree. Yours, Linus Walleij
Hi On 04/24/2017 02:30 PM, Linus Walleij wrote: > On Fri, Apr 7, 2017 at 2:43 PM, Alexandre TORGUE > <alexandre.torgue@st.com> wrote: > >> This patch introduces the MACH_STM32F469 to make possible to only select >> STM32F469 pinctrl driver >> >> By default, all the MACH_STM32Fxxx flags will be set with STM32 defconfig. >> >> Signed-off-by: Alexandre TORGUE <alexandre.torgue@st.com> > > Acked-by: Linus Walleij <linus.walleij@linaro.org> > > Please funnel this through the ARM SoC tree. Yes, I'll merge it in future pull request. Thanks for the series. Regards Alex > > Yours, > Linus Walleij >
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 0d4e71b..19c43e6 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -894,6 +894,11 @@ config MACH_STM32F429 depends on ARCH_STM32 default y +config MACH_STM32F469 + bool "STMicrolectronics STM32F469" + depends on ARCH_STM32 + default y + config MACH_STM32F746 bool "STMicrolectronics STM32F746" depends on ARCH_STM32
This patch introduces the MACH_STM32F469 to make possible to only select STM32F469 pinctrl driver By default, all the MACH_STM32Fxxx flags will be set with STM32 defconfig. Signed-off-by: Alexandre TORGUE <alexandre.torgue@st.com>