diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2015-02-13 14:44:29 +0100 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2015-03-25 11:49:35 +0100 |
commit | a876cb3f6b2d3eb9e857d06caa9ed4c911ea0bd3 (patch) | |
tree | 33a10ee8428ad1d8e40221b3ef0b7ed78cc08e08 /arch/s390/kernel/entry.S | |
parent | 4bfc86ce9436ea8064cad90fd891625bd814be1d (diff) | |
download | lwn-a876cb3f6b2d3eb9e857d06caa9ed4c911ea0bd3.tar.gz lwn-a876cb3f6b2d3eb9e857d06caa9ed4c911ea0bd3.zip |
s390: remove 31 bit syscalls
Remove the 31 bit syscalls from the syscall table. This is a separate patch
just in case I screwed something up so it can be easily reverted.
However the conversion was done with a script, so everything should be ok.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel/entry.S')
-rw-r--r-- | arch/s390/kernel/entry.S | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/s390/kernel/entry.S b/arch/s390/kernel/entry.S index c329446a951d..99b44acbfcc7 100644 --- a/arch/s390/kernel/entry.S +++ b/arch/s390/kernel/entry.S @@ -1042,8 +1042,8 @@ sie_exit: EX_TABLE(sie_exit,.Lsie_fault) #endif - .section .rodata, "a" -#define SYSCALL(esa,esame,emu) .long esame + .section .rodata, "a" +#define SYSCALL(esame,emu) .long esame .globl sys_call_table sys_call_table: #include "syscalls.S" @@ -1051,7 +1051,7 @@ sys_call_table: #ifdef CONFIG_COMPAT -#define SYSCALL(esa,esame,emu) .long emu +#define SYSCALL(esame,emu) .long emu .globl sys_call_table_emu sys_call_table_emu: #include "syscalls.S" |