summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2013-09-16 07:45:29 +0200
committerMichal Simek <michal.simek@xilinx.com>2013-11-08 15:20:39 +0100
commit176195e757df0044623b2086527ad5b5cfde9488 (patch)
tree330bd51e06d61c47728eeebe5b9b0df6091f775a /arch
parentdb2a7df0343a0fb166d369e58bcfe605162dc857 (diff)
microblaze: Use predefined SYSCALL_DEFINE macro
Use standard syscall definition. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/microblaze/kernel/sys_microblaze.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/microblaze/kernel/sys_microblaze.c b/arch/microblaze/kernel/sys_microblaze.c
index f905b3ae68c7..e80a6c02ac31 100644
--- a/arch/microblaze/kernel/sys_microblaze.c
+++ b/arch/microblaze/kernel/sys_microblaze.c
@@ -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;