The patch titled x86: cyrix code CONFIG_PCI fix / add __initdata has been added to the -mm tree. Its filename is x86-cyrix-code-config_pci-fix--add-__initdata.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: x86: cyrix code CONFIG_PCI fix / add __initdata From: Andreas Mohr <andi@xxxxxxxxxxxxxxxxxxxxxxx> PCI code was outside of CONFIG_PCI, add __initdata at cyrix_55x0 (since accessed within __init function only). Signed-off-by: Andreas Mohr <andi@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/kernel/cpu/cyrix.c | 9 +++++---- 1 files changed, 5 insertions(+), 4 deletions(-) diff -puN arch/i386/kernel/cpu/cyrix.c~x86-cyrix-code-config_pci-fix--add-__initdata arch/i386/kernel/cpu/cyrix.c --- 25/arch/i386/kernel/cpu/cyrix.c~x86-cyrix-code-config_pci-fix--add-__initdata Wed May 24 13:38:19 2006 +++ 25-akpm/arch/i386/kernel/cpu/cyrix.c Wed May 24 13:38:19 2006 @@ -184,7 +184,7 @@ static void __init geode_configure(void) #ifdef CONFIG_PCI -static struct pci_device_id cyrix_55x0[] = { +static struct pci_device_id __initdata cyrix_55x0[] = { { PCI_DEVICE(PCI_VENDOR_ID_CYRIX, PCI_DEVICE_ID_CYRIX_5510) }, { PCI_DEVICE(PCI_VENDOR_ID_CYRIX, PCI_DEVICE_ID_CYRIX_5520) }, { }, @@ -272,14 +272,15 @@ static void __init init_cyrix(struct cpu printk(KERN_INFO "Working around Cyrix MediaGX virtual DMA bugs.\n"); isa_dma_bridge_buggy = 2; -#endif - c->x86_cache_size=16; /* Yep 16K integrated cache thats it */ - + + /* * The 5510/5520 companion chips have a funky PIT. */ if (pci_dev_present(cyrix_55x0)) pit_latch_buggy = 1; +#endif + c->x86_cache_size=16; /* Yep 16K integrated cache thats it */ /* GXm supports extended cpuid levels 'ala' AMD */ if (c->cpuid_level == 2) { _ Patches currently in -mm which might be from andi@xxxxxxxxxxxxxxxxxxxxxxx are origin.patch git-acpi.patch mm-constify-drivers-char-keyboardc.patch acx1xx-wireless-driver.patch i386-apmc-optimization.patch x86-make-using_apic_timer-__read_mostly.patch x86-cyrix-code-config_pci-fix--add-__initdata.patch x86-constify-some-parts-of-arch-i386-kernel-cpu.patch x86-make-i387-mxcsr_feature_mask-__read_mostly.patch x86-make-acpi-errata-__read_mostly.patch x86-constify-arch-i386-pci-irqc.patch x86-use-proper-defines-for-i8259a-i-o.patch x86-powerpc-make-hardirq_ctx-and-softirq_ctx-__read_mostly.patch make-noirqdebug-irqfixup-__read_mostly-add-unlikely.patch make-pmtmr_ioport-__read_mostly.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html