Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 64807081 authored by jdl@freescale.com's avatar jdl@freescale.com Committed by Paul Mackerras
Browse files

[PATCH] powerpc: Make check_bugs() static inline



Make check_bugs() static inline and remove it from syscalls.c.

Signed-off-by: default avatarJon Loeliger <jdl@freescale.com>
Signed-off-by: default avatarKumar Gala <kumar.gala@freescale.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent a37c8875
Loading
Loading
Loading
Loading
+0 −4
Original line number Original line Diff line number Diff line
@@ -41,10 +41,6 @@
#include <asm/ipc.h>
#include <asm/ipc.h>
#include <asm/semaphore.h>
#include <asm/semaphore.h>


void
check_bugs(void)
{
}


/*
/*
 * sys_ipc() is the de-multiplexer for the SysV IPC calls..
 * sys_ipc() is the de-multiplexer for the SysV IPC calls..
+0 −4
Original line number Original line Diff line number Diff line
@@ -46,10 +46,6 @@


extern unsigned long wall_jiffies;
extern unsigned long wall_jiffies;


void
check_bugs(void)
{
}


/*
/*
 * sys_ipc() is the de-multiplexer for the SysV IPC calls..
 * sys_ipc() is the de-multiplexer for the SysV IPC calls..
+1 −1
Original line number Original line Diff line number Diff line
@@ -13,6 +13,6 @@
 * architecture-dependent bugs.
 * architecture-dependent bugs.
 */
 */


extern void check_bugs(void);
static inline void check_bugs(void) { }


#endif	/* _ASM_POWERPC_BUGS_H */
#endif	/* _ASM_POWERPC_BUGS_H */