diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2007-09-13 16:42:35 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-09-14 09:53:36 -0400 |
commit | 748a768384e05c021ea6be221b80c62a83d7b520 (patch) | |
tree | 8789a521471506c1601fff44a446a5e801fe4062 /include/asm-powerpc/ppc_asm.h | |
parent | 5e14d21e3f28a4181dacff0336040e30942f4921 (diff) |
[POWERPC] Fix modpost warnings from head*.S on ppc32
We get warnings like the following from the various ppc32 head*.S files:
WARNING: vmlinux.o(.text+0x358): Section mismatch: reference to .init.text:early_init (between 'skpinv' and 'interrupt_base')
WARNING: vmlinux.o(.text+0x380): Section mismatch: reference to .init.text:machine_init (between 'skpinv' and 'interrupt_base')
WARNING: vmlinux.o(.text+0x384): Section mismatch: reference to .init.text:MMU_init (between 'skpinv' and 'interrupt_base')
WARNING: vmlinux.o(.text+0x3aa): Section mismatch: reference to .init.text:start_kernel (between 'skpinv' and 'interrupt_base')
WARNING: vmlinux.o(.text+0x3ae): Section mismatch: reference to .init.text:start_kernel (between 'skpinv' and 'interrupt_base')
Added a .text.head section simliar to what other architectures do since
modpost already excludes this from its warnings.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'include/asm-powerpc/ppc_asm.h')
-rw-r--r-- | include/asm-powerpc/ppc_asm.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-powerpc/ppc_asm.h b/include/asm-powerpc/ppc_asm.h index 211fdaeeef84..2dbd4e7884fa 100644 --- a/include/asm-powerpc/ppc_asm.h +++ b/include/asm-powerpc/ppc_asm.h | |||
@@ -209,6 +209,10 @@ GLUE(.,name): | |||
209 | 209 | ||
210 | #else /* 32-bit */ | 210 | #else /* 32-bit */ |
211 | 211 | ||
212 | #define _ENTRY(n) \ | ||
213 | .globl n; \ | ||
214 | n: | ||
215 | |||
212 | #define _GLOBAL(n) \ | 216 | #define _GLOBAL(n) \ |
213 | .text; \ | 217 | .text; \ |
214 | .stabs __stringify(n:F-1),N_FUN,0,0,n;\ | 218 | .stabs __stringify(n:F-1),N_FUN,0,0,n;\ |