diff options
author | Andi Kleen <ak@linux.intel.com> | 2014-02-08 02:52:10 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2014-02-13 21:14:54 -0500 |
commit | 634676c203f130c8efa138296c2efba219821346 (patch) | |
tree | ee5988b7107aa0194af5a58d7b61de824e062735 /arch/x86/platform | |
parent | 3be5588ad5c2628c8aa4a578bcbb114fa2b49260 (diff) |
initconst, x86: Fix initconst mistake in ts5500 code
const data must be initconst.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Link: http://lkml.kernel.org/r/1391845930-28580-14-git-send-email-ak@linux.intel.com
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'arch/x86/platform')
-rw-r--r-- | arch/x86/platform/ts5500/ts5500.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/platform/ts5500/ts5500.c b/arch/x86/platform/ts5500/ts5500.c index 39febb214e8c..9471b9456f25 100644 --- a/arch/x86/platform/ts5500/ts5500.c +++ b/arch/x86/platform/ts5500/ts5500.c | |||
@@ -88,7 +88,7 @@ struct ts5500_sbc { | |||
88 | static const struct { | 88 | static const struct { |
89 | const char * const string; | 89 | const char * const string; |
90 | const ssize_t offset; | 90 | const ssize_t offset; |
91 | } ts5500_signatures[] __initdata = { | 91 | } ts5500_signatures[] __initconst = { |
92 | { "TS-5x00 AMD Elan", 0xb14 }, | 92 | { "TS-5x00 AMD Elan", 0xb14 }, |
93 | }; | 93 | }; |
94 | 94 | ||