forked from luck/tmp_suning_uos_patched
microblaze: Use predefined SYSCALL_DEFINE macro
Use standard syscall definition. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
db2a7df034
commit
176195e757
@ -33,9 +33,9 @@
|
||||
#include <linux/slab.h>
|
||||
#include <asm/syscalls.h>
|
||||
|
||||
asmlinkage long sys_mmap(unsigned long addr, unsigned long len,
|
||||
unsigned long prot, unsigned long flags,
|
||||
unsigned long fd, off_t pgoff)
|
||||
SYSCALL_DEFINE6(mmap, unsigned long, addr, unsigned long, len,
|
||||
unsigned long, prot, unsigned long, flags, unsigned long, fd,
|
||||
off_t, pgoff)
|
||||
{
|
||||
if (pgoff & ~PAGE_MASK)
|
||||
return -EINVAL;
|
||||
|
Loading…
Reference in New Issue
Block a user