The patch titled i386 visws: "extern inline" -> "static inline" has been added to the -mm tree. Its filename is i386-visws-extern-inline-static-inline.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: i386 visws: "extern inline" -> "static inline" From: Adrian Bunk <bunk@xxxxxxxxxx> "extern inline" will have different semantics with gcc 4.3. Signed-off-by: Adrian Bunk <bunk@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-i386/mach-visws/cobalt.h | 8 ++++---- include/asm-i386/mach-visws/lithium.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff -puN include/asm-i386/mach-visws/cobalt.h~i386-visws-extern-inline-static-inline include/asm-i386/mach-visws/cobalt.h --- a/include/asm-i386/mach-visws/cobalt.h~i386-visws-extern-inline-static-inline +++ a/include/asm-i386/mach-visws/cobalt.h @@ -94,22 +94,22 @@ #define CO_IRQ_8259 CO_IRQ(CO_APIC_8259) #ifdef CONFIG_X86_VISWS_APIC -extern __inline void co_cpu_write(unsigned long reg, unsigned long v) +static inline void co_cpu_write(unsigned long reg, unsigned long v) { *((volatile unsigned long *)(CO_CPU_VADDR+reg))=v; } -extern __inline unsigned long co_cpu_read(unsigned long reg) +static inline unsigned long co_cpu_read(unsigned long reg) { return *((volatile unsigned long *)(CO_CPU_VADDR+reg)); } -extern __inline void co_apic_write(unsigned long reg, unsigned long v) +static inline void co_apic_write(unsigned long reg, unsigned long v) { *((volatile unsigned long *)(CO_APIC_VADDR+reg))=v; } -extern __inline unsigned long co_apic_read(unsigned long reg) +static inline unsigned long co_apic_read(unsigned long reg) { return *((volatile unsigned long *)(CO_APIC_VADDR+reg)); } diff -puN include/asm-i386/mach-visws/lithium.h~i386-visws-extern-inline-static-inline include/asm-i386/mach-visws/lithium.h --- a/include/asm-i386/mach-visws/lithium.h~i386-visws-extern-inline-static-inline +++ a/include/asm-i386/mach-visws/lithium.h @@ -29,22 +29,22 @@ #define LI_INTD 0x0080 /* More special purpose macros... */ -extern __inline void li_pcia_write16(unsigned long reg, unsigned short v) +static inline void li_pcia_write16(unsigned long reg, unsigned short v) { *((volatile unsigned short *)(LI_PCIA_VADDR+reg))=v; } -extern __inline unsigned short li_pcia_read16(unsigned long reg) +static inline unsigned short li_pcia_read16(unsigned long reg) { return *((volatile unsigned short *)(LI_PCIA_VADDR+reg)); } -extern __inline void li_pcib_write16(unsigned long reg, unsigned short v) +static inline void li_pcib_write16(unsigned long reg, unsigned short v) { *((volatile unsigned short *)(LI_PCIB_VADDR+reg))=v; } -extern __inline unsigned short li_pcib_read16(unsigned long reg) +static inline unsigned short li_pcib_read16(unsigned long reg) { return *((volatile unsigned short *)(LI_PCIB_VADDR+reg)); } _ Patches currently in -mm which might be from bunk@xxxxxxxxxx are arm-extern-inline-static-inline.patch git-dvb.patch make-the-dummy-touchkit_ps2_detect-static.patch git-kbuild.patch pass-g-to-assembler-under-config_debug_info-fix.patch fix-ide-ide-hook-acpi-psx-method-to-ide-power-on-off.patch fix-ide-ide-remove-ide-dma-check.patch drivers-mtd-mtdbdic-is-no-longer-an-own-module.patch git-nfsd.patch fix-x86_64-mm-unwinder.patch i386-visws-extern-inline-static-inline.patch file-capabilities-clear-fcaps-on-inode-change-fix.patch security-cleanups.patch make-kernel-power-maincsuspend_enter-static.patch uml-fix-inlines.patch kconfig-syntax-cleanups.patch kernel-time-timekeepingc-cleanups.patch make-fs-libfscsimple_commit_write-static.patch allow-disabling-dnotify-without-embedded.patch use-erestart_restartblock-if-poll-is-interrupted-by-a-signal-fix.patch remove-include-asm-ipch.patch remove-fs-ext2-balloccreserve_blocks.patch pm3fb-mtrr-support-and-noaccel-option-make-pm3fb_init-static-again.patch sysctl-parport-remove-binary-paths-fix.patch sysctl-error-on-bad-sysctl-tables-kernel-sysctl_checkc-must-include-linux-stringh.patch reiser4-cryptcompress-misc-fixups-make-3-functions-static.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