summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-spear/platsmp.c
diff options
context:
space:
mode:
authorArnd Bergmann2015-12-18 17:07:52 +0100
committerArnd Bergmann2015-12-18 17:07:52 +0100
commit11c7a6c5a3232e2ff1127d80d609daa95df5d5d4 (patch)
tree52a7bfe7994eb7f0c9d4b9301ad3c27f9bb9ad71 /arch/arm/mach-spear/platsmp.c
parentARM: realview: build realview-dt SMP support only when used (diff)
parentARM: use "depends on" for SoC configs instead of "if" after prompt (diff)
downloadkernel-qcow2-linux-11c7a6c5a3232e2ff1127d80d609daa95df5d5d4.tar.gz
kernel-qcow2-linux-11c7a6c5a3232e2ff1127d80d609daa95df5d5d4.tar.xz
kernel-qcow2-linux-11c7a6c5a3232e2ff1127d80d609daa95df5d5d4.zip
Merge branch 'treewide/cleanup' into next/multiplatform
The realview multiplatform series has a trivial conflict with one of the treewide cleanups, let's just merge that in to avoid having to resolve this later. * treewide/cleanup: ARM: use "depends on" for SoC configs instead of "if" after prompt ARM/clocksource: use automatic DT probing for ux500 PRCMU ARM: use const and __initconst for smp_operations ARM: hisi: do not export smp_operations structures Conflicts: arch/arm/mach-integrator/Kconfig
Diffstat (limited to 'arch/arm/mach-spear/platsmp.c')
-rw-r--r--arch/arm/mach-spear/platsmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-spear/platsmp.c b/arch/arm/mach-spear/platsmp.c
index fd4297713d67..8d1e2d551786 100644
--- a/arch/arm/mach-spear/platsmp.c
+++ b/arch/arm/mach-spear/platsmp.c
@@ -120,7 +120,7 @@ static void __init spear13xx_smp_prepare_cpus(unsigned int max_cpus)
__raw_writel(virt_to_phys(spear13xx_secondary_startup), SYS_LOCATION);
}
-struct smp_operations spear13xx_smp_ops __initdata = {
+const struct smp_operations spear13xx_smp_ops __initconst = {
.smp_init_cpus = spear13xx_smp_init_cpus,
.smp_prepare_cpus = spear13xx_smp_prepare_cpus,
.smp_secondary_init = spear13xx_secondary_init,