diff options
author | jdl@freescale.com <jdl@freescale.com> | 2005-09-07 15:56:20 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-09-09 22:11:35 +1000 |
commit | 64807081e38703617cf9a5d71db14ea2b3e1cb04 (patch) | |
tree | 81f2be3978b4f39b292343e11a831bd569ee6af0 | |
parent | a37c8875a764b4decf941859f4a2c63e1e86c8fa (diff) | |
download | linux-3.10-64807081e38703617cf9a5d71db14ea2b3e1cb04.tar.gz linux-3.10-64807081e38703617cf9a5d71db14ea2b3e1cb04.tar.bz2 linux-3.10-64807081e38703617cf9a5d71db14ea2b3e1cb04.zip |
[PATCH] powerpc: Make check_bugs() static inline
Make check_bugs() static inline and remove it from syscalls.c.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-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 124313ce3c0..127f040de9d 100644 --- a/arch/ppc/kernel/syscalls.c +++ b/arch/ppc/kernel/syscalls.c @@ -41,10 +41,6 @@ #include <asm/ipc.h> #include <asm/semaphore.h> -void -check_bugs(void) -{ -} /* * 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 a8cbb202b8c..05f16633bd2 100644 --- a/arch/ppc64/kernel/syscalls.c +++ b/arch/ppc64/kernel/syscalls.c @@ -46,10 +46,6 @@ extern unsigned long wall_jiffies; -void -check_bugs(void) -{ -} /* * 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 f5caee8558b..42fdb73e306 100644 --- a/include/asm-powerpc/bugs.h +++ b/include/asm-powerpc/bugs.h @@ -13,6 +13,6 @@ * architecture-dependent bugs. */ -extern void check_bugs(void); +static inline void check_bugs(void) { } #endif /* _ASM_POWERPC_BUGS_H */ |