diff options
-rw-r--r-- | arch/x86_64/kernel/mce_amd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/kernel/mce_amd.c b/arch/x86_64/kernel/mce_amd.c index 3f967d4fe199..335200aa2737 100644 --- a/arch/x86_64/kernel/mce_amd.c +++ b/arch/x86_64/kernel/mce_amd.c | |||
@@ -636,7 +636,7 @@ static void threshold_remove_device(unsigned int cpu) | |||
636 | #endif | 636 | #endif |
637 | 637 | ||
638 | /* get notified when a cpu comes on/off */ | 638 | /* get notified when a cpu comes on/off */ |
639 | static int threshold_cpu_callback(struct notifier_block *nfb, | 639 | static int __cpuinit threshold_cpu_callback(struct notifier_block *nfb, |
640 | unsigned long action, void *hcpu) | 640 | unsigned long action, void *hcpu) |
641 | { | 641 | { |
642 | /* cpu was unsigned int to begin with */ | 642 | /* cpu was unsigned int to begin with */ |
@@ -659,7 +659,7 @@ static int threshold_cpu_callback(struct notifier_block *nfb, | |||
659 | return NOTIFY_OK; | 659 | return NOTIFY_OK; |
660 | } | 660 | } |
661 | 661 | ||
662 | static struct notifier_block threshold_cpu_notifier = { | 662 | static struct notifier_block threshold_cpu_notifier __cpuinitdata = { |
663 | .notifier_call = threshold_cpu_callback, | 663 | .notifier_call = threshold_cpu_callback, |
664 | }; | 664 | }; |
665 | 665 | ||