diff options
author | Marc Gonzalez <marc_gonzalez@sigmadesigns.com> | 2016-01-06 12:27:43 +0300 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2016-01-07 08:33:41 +0300 |
commit | d6bd05794f18673097ec5e62e577754649a5c632 (patch) | |
tree | 8429bcc990c2e1256eaf5a4ef350c9d01c5d3bbc /arch/arm/mach-tango/Makefile | |
parent | 765ff22d54591a24fe81f6a451b953f43e076ced (diff) | |
download | linux-d6bd05794f18673097ec5e62e577754649a5c632.tar.xz |
ARM: tango: Fix UP build issues
Move SMP setup to platsmp.c for consistency with other platforms.
Signed-off-by: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/mach-tango/Makefile')
-rw-r--r-- | arch/arm/mach-tango/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-tango/Makefile b/arch/arm/mach-tango/Makefile index 99422ea743fd..f33935e42e77 100644 --- a/arch/arm/mach-tango/Makefile +++ b/arch/arm/mach-tango/Makefile @@ -1,3 +1,5 @@ plus_sec := $(call as-instr,.arch_extension sec,+sec) -AFLAGS_smc.o :=-Wa,-march=armv7-a$(plus_sec) +AFLAGS_smc.o := -Wa,-march=armv7-a$(plus_sec) + obj-y += setup.o smc.o +obj-$(CONFIG_SMP) += platsmp.o |