diff options
author | Andreas Färber <afaerber@suse.de> | 2017-07-03 19:18:04 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2017-09-20 16:49:27 +0200 |
commit | 6c2eb3e76fb84e2eb46d484f71fab469c0d9532c (patch) | |
tree | fc026dc8b2949f7c05c00940be80ae20fcf257c6 /arch/arm/mach-actions/Makefile | |
parent | bad29933fef76fb6ee577f4a0b6d145c1f52f663 (diff) |
ARM: owl: smp: Drop owl_secondary_boot()
Commit 18cfd9429d8a82c49add8f3ca9d366599bfcac45 simplified the S500 SMP
code by removing a loop for pen_release in owl_secondary_boot().
Since then it is only calling owl_v7_invalidate_l1() before branching to
secondary_startup().
The owl_v7_invalidate_l1() assembler function is superfluous, too.
Therefore drop owl_secondary_boot() and use secondary_boot() directly.
Fixes: 18cfd9429d8a ("ARM: owl: smp: Drop bogus holding pen")
Cc: David Liu <liuwei@actions-semi.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
Diffstat (limited to 'arch/arm/mach-actions/Makefile')
-rw-r--r-- | arch/arm/mach-actions/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/arm/mach-actions/Makefile b/arch/arm/mach-actions/Makefile index c0f116241da7..13831037d8cd 100644 --- a/arch/arm/mach-actions/Makefile +++ b/arch/arm/mach-actions/Makefile @@ -1,3 +1 @@ -obj-${CONFIG_SMP} += platsmp.o headsmp.o - -AFLAGS_headsmp.o := -Wa,-march=armv7-a +obj-${CONFIG_SMP} += platsmp.o |