diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2015-07-07 18:17:01 -0700 |
---|---|---|
committer | Florian Fainelli <f.fainelli@gmail.com> | 2015-07-11 18:33:51 -0700 |
commit | ffb910d7b84f21ef6caeed041032a0af8d2e00ed (patch) | |
tree | 83d68aa2f19b6e936a4d0fa13d8a2b3b751b000d /arch/arm/mach-bcm/bcm63xx_smp.c | |
parent | a6b4b25bd15c0a490769422a7eee355e9e91a57b (diff) | |
download | linux-rpi-ffb910d7b84f21ef6caeed041032a0af8d2e00ed.tar.gz linux-rpi-ffb910d7b84f21ef6caeed041032a0af8d2e00ed.tar.bz2 linux-rpi-ffb910d7b84f21ef6caeed041032a0af8d2e00ed.zip |
ARM: BCM63xx: Remove custom secondary_startup function
With commit 02b4e2756e01c623cc4dbceae4b07be75252db5b ("ARM: v7 setup
function should invalidate L1 cache"), the default secondary_startup
function for ARMv7 CPUs does invalidate the L1 cache, which was the sole
reason why BCM63xx had to have its own secondary_startup implementation.
Now that the secondary_startup takes care of this, we can completely
remove that code.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Diffstat (limited to 'arch/arm/mach-bcm/bcm63xx_smp.c')
-rw-r--r-- | arch/arm/mach-bcm/bcm63xx_smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-bcm/bcm63xx_smp.c b/arch/arm/mach-bcm/bcm63xx_smp.c index b8e18cc8f237..19be90421f4d 100644 --- a/arch/arm/mach-bcm/bcm63xx_smp.c +++ b/arch/arm/mach-bcm/bcm63xx_smp.c @@ -135,7 +135,7 @@ static int bcm63138_smp_boot_secondary(unsigned int cpu, } /* Write the secondary init routine to the BootLUT reset vector */ - val = virt_to_phys(bcm63138_secondary_startup); + val = virt_to_phys(secondary_startup); writel_relaxed(val, bootlut_base + BOOTLUT_RESET_VECT); /* Power up the core, will jump straight to its reset vector when we |