mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
4302e5254a
Warning log: CHECK arch/microblaze/kernel/sys_microblaze.c arch/microblaze/kernel/sys_microblaze.c:37:17: warning: symbol 'microblaze_vfork' was not declared. Should it be static? arch/microblaze/kernel/sys_microblaze.c:43:17: warning: symbol 'microblaze_clone' was not declared. Should it be static? arch/microblaze/kernel/sys_microblaze.c:50:17: warning: symbol 'microblaze_execve' was not declared. Should it be static? Signed-off-by: Michal Simek <monstr@monstr.eu>
17 lines
558 B
C
17 lines
558 B
C
#ifndef __ASM_MICROBLAZE_SYSCALLS_H
|
|
|
|
asmlinkage long microblaze_vfork(struct pt_regs *regs);
|
|
asmlinkage long microblaze_clone(int flags, unsigned long stack,
|
|
struct pt_regs *regs);
|
|
asmlinkage long microblaze_execve(const char __user *filenamei,
|
|
const char __user *const __user *argv,
|
|
const char __user *const __user *envp,
|
|
struct pt_regs *regs);
|
|
|
|
asmlinkage long sys_clone(int flags, unsigned long stack, struct pt_regs *regs);
|
|
#define sys_clone sys_clone
|
|
|
|
#include <asm-generic/syscalls.h>
|
|
|
|
#endif /* __ASM_MICROBLAZE_SYSCALLS_H */
|