diff options
author | Stefan Wahren <stefan.wahren@i2se.com> | 2017-08-06 17:52:02 +0200 |
---|---|---|
committer | Florian Fainelli <f.fainelli@gmail.com> | 2017-09-25 11:52:26 -0700 |
commit | 88bbe85dcd37aa2662c1a83962c15009fc12503e (patch) | |
tree | fd805241038275a14c8050d26e3201e8ed7c73be /arch/arm/mach-bcm/Makefile | |
parent | 1d66af81905a4e2f3d03913f5449a8e9b5d3facd (diff) | |
download | linux-88bbe85dcd37aa2662c1a83962c15009fc12503e.tar.bz2 |
irqchip: bcm2836: Move SMP startup code to arch/arm (v2)
In order to easily provide SMP for BCM2837 on 32-bit and 64-bit
the SMP startup code was placed in irq-bcm2836. That's not the
right approach. So move this code where it belongs.
Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Fixes: 41f4988cc287 ("irqchip/bcm2836: Add SMP support for the 2836")
Tested-by: Eric Anholt <eric@anholt.net>
Acked-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'arch/arm/mach-bcm/Makefile')
-rw-r--r-- | arch/arm/mach-bcm/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-bcm/Makefile b/arch/arm/mach-bcm/Makefile index 980f5850097c..62a59008c5a8 100644 --- a/arch/arm/mach-bcm/Makefile +++ b/arch/arm/mach-bcm/Makefile @@ -43,6 +43,11 @@ endif # BCM2835 obj-$(CONFIG_ARCH_BCM2835) += board_bcm2835.o +ifeq ($(CONFIG_ARCH_BCM2835),y) +ifeq ($(CONFIG_ARM),y) +obj-$(CONFIG_SMP) += platsmp.o +endif +endif # BCM5301X obj-$(CONFIG_ARCH_BCM_5301X) += bcm_5301x.o |