Browse Source

ARM: tango: use const and __initconst for smp_operations

This newly added code missed the global fixup by commit 75305275a721
("ARM: use const and __initconst for smp_operations").  So fix it now.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Marc Gonzalez <marc_gonzalez@sigmadesigns.com>
Signed-off-by: Olof Johansson <olof@lixom.net>
Masahiro Yamada 9 years ago
parent
commit
c38ac80eb4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/arm/mach-tango/platsmp.c

+ 1 - 1
arch/arm/mach-tango/platsmp.c

@@ -9,7 +9,7 @@ static int tango_boot_secondary(unsigned int cpu, struct task_struct *idle)
 	return 0;
 	return 0;
 }
 }
 
 
-static struct smp_operations tango_smp_ops __initdata = {
+static const struct smp_operations tango_smp_ops __initconst = {
 	.smp_boot_secondary	= tango_boot_secondary,
 	.smp_boot_secondary	= tango_boot_secondary,
 };
 };