diff options
author | Vikas Manocha <vikas.manocha@st.com> | 2016-01-15 17:49:06 -0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-01-20 10:19:41 -0500 |
commit | 0a61ee880ceecfa8e3ac12774c4424a73c0ba91d (patch) | |
tree | 2e0c6c0634950c3e7bd69f2b3f7c1668d30f459e /arch/arm/mach-stm32/Makefile | |
parent | a260af611834466afb0aeeb53cec0bcdf2228b7c (diff) | |
download | u-boot-imx-0a61ee880ceecfa8e3ac12774c4424a73c0ba91d.zip u-boot-imx-0a61ee880ceecfa8e3ac12774c4424a73c0ba91d.tar.gz u-boot-imx-0a61ee880ceecfa8e3ac12774c4424a73c0ba91d.tar.bz2 |
stm32: move stm32 specific code to mach-stm32
This patch moves stm32 sources at one place, with this armv7m now contains
only generic stuff.
Signed-off-by: Vikas Manocha <vikas.manocha@st.com>
Diffstat (limited to 'arch/arm/mach-stm32/Makefile')
-rw-r--r-- | arch/arm/mach-stm32/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-stm32/Makefile b/arch/arm/mach-stm32/Makefile new file mode 100644 index 0000000..ea06034 --- /dev/null +++ b/arch/arm/mach-stm32/Makefile @@ -0,0 +1,9 @@ +# +# (C) Copyright 2000-2006 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-$(CONFIG_STM32F1) += stm32f1/ +obj-$(CONFIG_STM32F4) += stm32f4/ |