powerpc: Create DOTSYM to wrap dot symbol usage
[cascardo/linux.git] / arch / powerpc / kernel / systbl.S
index 579de70..895c50c 100644 (file)
 #include <asm/ppc_asm.h>
 
 #ifdef CONFIG_PPC64
-#define SYSCALL(func)          .llong  .sys_##func,.sys_##func
-#define COMPAT_SYS(func)       .llong  .sys_##func,.compat_sys_##func
-#define PPC_SYS(func)          .llong  .ppc_##func,.ppc_##func
-#define OLDSYS(func)           .llong  .sys_ni_syscall,.sys_ni_syscall
-#define SYS32ONLY(func)                .llong  .sys_ni_syscall,.compat_sys_##func
-#define SYSX(f, f3264, f32)    .llong  .f,.f3264
+#define SYSCALL(func)          .llong  DOTSYM(sys_##func),DOTSYM(sys_##func)
+#define COMPAT_SYS(func)       .llong  DOTSYM(sys_##func),DOTSYM(compat_sys_##func)
+#define PPC_SYS(func)          .llong  DOTSYM(ppc_##func),DOTSYM(ppc_##func)
+#define OLDSYS(func)           .llong  DOTSYM(sys_ni_syscall),DOTSYM(sys_ni_syscall)
+#define SYS32ONLY(func)                .llong  DOTSYM(sys_ni_syscall),DOTSYM(compat_sys_##func)
+#define SYSX(f, f3264, f32)    .llong  DOTSYM(f),DOTSYM(f3264)
 #else
 #define SYSCALL(func)          .long   sys_##func
 #define COMPAT_SYS(func)       .long   sys_##func
 #define PPC_SYS_SPU(func)      PPC_SYS(func)
 #define SYSX_SPU(f, f3264, f32)        SYSX(f, f3264, f32)
 
+.section .rodata,"a"
+
 #ifdef CONFIG_PPC64
 #define sys_sigpending sys_ni_syscall
 #define sys_old_getrlimit sys_ni_syscall
+
+       .p2align        3
 #endif
 
-_GLOBAL(sys_call_table)
+.globl sys_call_table
+sys_call_table:
+
 #include <asm/systbl.h>