projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3be5588
)
initconst, x86: Fix initconst mistake in ts5500 code
author
Andi Kleen
<ak@linux.intel.com>
Sat, 8 Feb 2014 07:52:10 +0000
(08:52 +0100)
committer
H. Peter Anvin
<hpa@linux.intel.com>
Fri, 14 Feb 2014 02:14:54 +0000
(18:14 -0800)
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>
arch/x86/platform/ts5500/ts5500.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/x86/platform/ts5500/ts5500.c
b/arch/x86/platform/ts5500/ts5500.c
index 39febb214e8c748ffd245c409c3b0cea31d3cebd..9471b9456f259762baf47c05a742d8401146b81e 100644
(file)
--- a/
arch/x86/platform/ts5500/ts5500.c
+++ b/
arch/x86/platform/ts5500/ts5500.c
@@
-88,7
+88,7
@@
struct ts5500_sbc {
static const struct {
const char * const string;
const ssize_t offset;
-} ts5500_signatures[] __init
data
= {
+} ts5500_signatures[] __init
const
= {
{ "TS-5x00 AMD Elan", 0xb14 },
};