Commit b6d1145f authored by Dave Jones's avatar Dave Jones Committed by Linus Torvalds

[PATCH] MTRR __initdata fix

smp_changes_mask is used by generic_set_all() which isn't __init
Signed-off-by: default avatarDave Jones <davej@redhat.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent c4581be0
...@@ -18,7 +18,7 @@ struct mtrr_state { ...@@ -18,7 +18,7 @@ struct mtrr_state {
mtrr_type def_type; mtrr_type def_type;
}; };
static unsigned long smp_changes_mask __initdata = 0; static unsigned long smp_changes_mask;
struct mtrr_state mtrr_state = {}; struct mtrr_state mtrr_state = {};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment