Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=be31f9cbc809dae0bcdd39211c33c6882a7b0c9e
Commit:     be31f9cbc809dae0bcdd39211c33c6882a7b0c9e
Parent:     5b149bcc230e4696a1d893504bed38aeb3832314
Author:     Jean Delvare <[EMAIL PROTECTED]>
AuthorDate: Fri Dec 22 01:10:19 2006 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Fri Dec 22 08:55:50 2006 -0800

    [PATCH] microcode: fix mc_cpu_notifier section warning
    
    Structure mc_cpu_notifier references a __cpuinit function, but isn't
    declared __cpuinitdata itself:
    
    WARNING: arch/i386/kernel/microcode.o - Section mismatch: reference
    to .init.text: from .data after 'mc_cpu_notifier' (at offset 0x118)
    
    Signed-off-by: Jean Delvare <[EMAIL PROTECTED]>
    Cc: Tigran Aivazian <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 arch/i386/kernel/microcode.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/i386/kernel/microcode.c b/arch/i386/kernel/microcode.c
index 47ffec5..c8fa137 100644
--- a/arch/i386/kernel/microcode.c
+++ b/arch/i386/kernel/microcode.c
@@ -722,7 +722,7 @@ mc_cpu_callback(struct notifier_block *nb, unsigned long 
action, void *hcpu)
        return NOTIFY_OK;
 }
 
-static struct notifier_block mc_cpu_notifier = {
+static struct notifier_block __cpuinitdata mc_cpu_notifier = {
        .notifier_call = mc_cpu_callback,
 };
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to