[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 <ak@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Andrew Morton and committed by Linus Torvalds c993c735 b6d2cccb

+1 -1
+1 -1
arch/x86_64/kernel/early-quirks.c
··· 88 void (*f)(void); 89 }; 90 91 - static struct __initdata chipset early_qrk[] = { 92 { PCI_VENDOR_ID_NVIDIA, nvidia_bugs }, 93 { PCI_VENDOR_ID_VIA, via_bugs }, 94 { PCI_VENDOR_ID_ATI, ati_bugs },
··· 88 void (*f)(void); 89 }; 90 91 + static struct chipset early_qrk[] __initdata = { 92 { PCI_VENDOR_ID_NVIDIA, nvidia_bugs }, 93 { PCI_VENDOR_ID_VIA, via_bugs }, 94 { PCI_VENDOR_ID_ATI, ati_bugs },