Skip to content

Commit

Permalink
initconst, x86: Fix initconst mistake in ts5500 code
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Andi Kleen authored and H. Peter Anvin committed Feb 14, 2014
1 parent 3be5588 commit 634676c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/platform/ts5500/ts5500.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ struct ts5500_sbc {
static const struct {
const char * const string;
const ssize_t offset;
} ts5500_signatures[] __initdata = {
} ts5500_signatures[] __initconst = {
{ "TS-5x00 AMD Elan", 0xb14 },
};

Expand Down

0 comments on commit 634676c

Please sign in to comment.