Commit 2da06b4e authored by Thomas Gleixner's avatar Thomas Gleixner Committed by Ingo Molnar

x86: clean up arch/x86/ia32/ipc32.c

White space and coding style cleanup.
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 99b9cdf7
...@@ -9,8 +9,7 @@ ...@@ -9,8 +9,7 @@
#include <linux/ipc.h> #include <linux/ipc.h>
#include <linux/compat.h> #include <linux/compat.h>
asmlinkage long asmlinkage long sys32_ipc(u32 call, int first, int second, int third,
sys32_ipc(u32 call, int first, int second, int third,
compat_uptr_t ptr, u32 fifth) compat_uptr_t ptr, u32 fifth)
{ {
int version; int version;
...@@ -43,7 +42,6 @@ sys32_ipc(u32 call, int first, int second, int third, ...@@ -43,7 +42,6 @@ sys32_ipc(u32 call, int first, int second, int third,
case SHMAT: case SHMAT:
return compat_sys_shmat(first, second, third, version, return compat_sys_shmat(first, second, third, version,
compat_ptr(ptr)); compat_ptr(ptr));
break;
case SHMDT: case SHMDT:
return sys_shmdt(compat_ptr(ptr)); return sys_shmdt(compat_ptr(ptr));
case SHMGET: case SHMGET:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment