diff options
| -rw-r--r-- | arch/arm/mach-spear/Makefile | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-spear/Makefile b/arch/arm/mach-spear/Makefile index dc9ce80508a..8aaf724e1ea 100644 --- a/arch/arm/mach-spear/Makefile +++ b/arch/arm/mach-spear/Makefile @@ -7,10 +7,10 @@ ccflags-$(CONFIG_ARCH_MULTIPLATFORM) := -I$(srctree)/$(src)/include  # Common support  obj-y	:= restart.o time.o -obj-$(CONFIG_SMP)		+= headsmp.o platsmp.o -obj-$(CONFIG_HOTPLUG_CPU)	+= hotplug.o +smp-$(CONFIG_SMP)		+= headsmp.o platsmp.o +smp-$(CONFIG_HOTPLUG_CPU)	+= hotplug.o -obj-$(CONFIG_ARCH_SPEAR13XX)	+= spear13xx.o +obj-$(CONFIG_ARCH_SPEAR13XX)	+= spear13xx.o $(smp-y)  obj-$(CONFIG_MACH_SPEAR1310)	+= spear1310.o  obj-$(CONFIG_MACH_SPEAR1340)	+= spear1340.o  |