diff options
-rw-r--r-- | arch/ppc/kernel/syscalls.c | 4 | ||||
-rw-r--r-- | arch/ppc64/kernel/syscalls.c | 4 | ||||
-rw-r--r-- | include/asm-powerpc/bugs.h | 2 |
3 files changed, 1 insertions, 9 deletions
diff --git a/arch/ppc/kernel/syscalls.c b/arch/ppc/kernel/syscalls.c index 124313ce3c09..127f040de9de 100644 --- a/arch/ppc/kernel/syscalls.c +++ b/arch/ppc/kernel/syscalls.c | |||
@@ -41,10 +41,6 @@ | |||
41 | #include <asm/ipc.h> | 41 | #include <asm/ipc.h> |
42 | #include <asm/semaphore.h> | 42 | #include <asm/semaphore.h> |
43 | 43 | ||
44 | void | ||
45 | check_bugs(void) | ||
46 | { | ||
47 | } | ||
48 | 44 | ||
49 | /* | 45 | /* |
50 | * sys_ipc() is the de-multiplexer for the SysV IPC calls.. | 46 | * sys_ipc() is the de-multiplexer for the SysV IPC calls.. |
diff --git a/arch/ppc64/kernel/syscalls.c b/arch/ppc64/kernel/syscalls.c index a8cbb202b8cd..05f16633bd2c 100644 --- a/arch/ppc64/kernel/syscalls.c +++ b/arch/ppc64/kernel/syscalls.c | |||
@@ -46,10 +46,6 @@ | |||
46 | 46 | ||
47 | extern unsigned long wall_jiffies; | 47 | extern unsigned long wall_jiffies; |
48 | 48 | ||
49 | void | ||
50 | check_bugs(void) | ||
51 | { | ||
52 | } | ||
53 | 49 | ||
54 | /* | 50 | /* |
55 | * sys_ipc() is the de-multiplexer for the SysV IPC calls.. | 51 | * sys_ipc() is the de-multiplexer for the SysV IPC calls.. |
diff --git a/include/asm-powerpc/bugs.h b/include/asm-powerpc/bugs.h index f5caee8558bf..42fdb73e3068 100644 --- a/include/asm-powerpc/bugs.h +++ b/include/asm-powerpc/bugs.h | |||
@@ -13,6 +13,6 @@ | |||
13 | * architecture-dependent bugs. | 13 | * architecture-dependent bugs. |
14 | */ | 14 | */ |
15 | 15 | ||
16 | extern void check_bugs(void); | 16 | static inline void check_bugs(void) { } |
17 | 17 | ||
18 | #endif /* _ASM_POWERPC_BUGS_H */ | 18 | #endif /* _ASM_POWERPC_BUGS_H */ |