diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2016-01-25 06:33:42 -0500 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2016-02-01 15:18:23 -0500 |
commit | c38ac80eb4b0d0c78aad9b8978a3c0da3da01ead (patch) | |
tree | 9d9f48ee903abd958d0aca094c4990e76271abfa | |
parent | 567fdd9d91db09c0af563930253ef9dbb28ddb5b (diff) |
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>
-rw-r--r-- | arch/arm/mach-tango/platsmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-tango/platsmp.c b/arch/arm/mach-tango/platsmp.c index a18d5a34e2f5..a21f55e000d2 100644 --- a/arch/arm/mach-tango/platsmp.c +++ b/arch/arm/mach-tango/platsmp.c | |||
@@ -9,7 +9,7 @@ static int tango_boot_secondary(unsigned int cpu, struct task_struct *idle) | |||
9 | return 0; | 9 | return 0; |
10 | } | 10 | } |
11 | 11 | ||
12 | static struct smp_operations tango_smp_ops __initdata = { | 12 | static const struct smp_operations tango_smp_ops __initconst = { |
13 | .smp_boot_secondary = tango_boot_secondary, | 13 | .smp_boot_secondary = tango_boot_secondary, |
14 | }; | 14 | }; |
15 | 15 | ||