Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c993c7355df55283bc9a539652be44cd81b8c6dd
Commit:     c993c7355df55283bc9a539652be44cd81b8c6dd
Parent:     b6d2cccb55b518956a7de75182757276a2057869
Author:     Andrew Morton <[EMAIL PROTECTED]>
AuthorDate: Sun Apr 8 16:04:03 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Sun Apr 8 19:47:55 2007 -0700

    [PATCH] x86_64 early quirks: fix early_qrk[] section tag
    
    WARNING: arch/x86_64/kernel/built-in.o - Section mismatch: reference to 
.init.text:nvidia_bugs from .data between 'early_qrk' (at offset 0x8428) and 
'enable_cpu_hotplug'
    WARNING: arch/x86_64/kernel/built-in.o - Section mismatch: reference to 
.init.text:via_bugs from .data between 'early_qrk' (at offset 0x8438) and 
'enable_cpu_hotplug'
    WARNING: arch/x86_64/kernel/built-in.o - Section mismatch: reference to 
.init.text:ati_bugs from .data between 'early_qrk' (at offset 0x8448) and 
'enable_cpu_hotplug'
    
    The compiler is putting it into .data because the __initdata is in the wrong
    place.
    
    Cc: Andi Kleen <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 arch/x86_64/kernel/early-quirks.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86_64/kernel/early-quirks.c 
b/arch/x86_64/kernel/early-quirks.c
index 148c6bc..fede55a 100644
--- a/arch/x86_64/kernel/early-quirks.c
+++ b/arch/x86_64/kernel/early-quirks.c
@@ -88,7 +88,7 @@ struct chipset {
        void (*f)(void);
 };
 
-static struct __initdata chipset early_qrk[] = {
+static struct chipset early_qrk[] __initdata = {
        { PCI_VENDOR_ID_NVIDIA, nvidia_bugs },
        { PCI_VENDOR_ID_VIA, via_bugs },
        { PCI_VENDOR_ID_ATI, ati_bugs },
-
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