summaryrefslogtreecommitdiff
path: root/arch/microblaze/kernel/syscall_table.S
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2021-04-29 11:36:47 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2021-04-29 11:36:47 -0700
commitd0cc7ecacba8a5b6bbdd5aa6ba3d1bc2fe59b580 (patch)
tree5bbb05359ef01a90c54a06f8c92dcee1cb42d77f /arch/microblaze/kernel/syscall_table.S
parent77d51337d650086643e1e96b8a7e1e6cbf0b09ff (diff)
parent47de4477a8e6bfd202640567ce4bf17cc1de60be (diff)
Merge tag 'microblaze-v5.13' of git://git.monstr.eu/linux-2.6-microblaze
Pull Microblaze updates from Michal Simek: "No new features, just about cleaning up some code and moving to generic syscall solution used by other architectures: - Switch to generic syscall scripts - Some small fixes" * tag 'microblaze-v5.13' of git://git.monstr.eu/linux-2.6-microblaze: microblaze: add 'fallthrough' to memcpy/memset/memmove microblaze: Fix a typo microblaze: tag highmem_setup() with __meminit microblaze: syscalls: switch to generic syscallhdr.sh microblaze: syscalls: switch to generic syscalltbl.sh
Diffstat (limited to 'arch/microblaze/kernel/syscall_table.S')
-rw-r--r--arch/microblaze/kernel/syscall_table.S3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/microblaze/kernel/syscall_table.S b/arch/microblaze/kernel/syscall_table.S
index ce006646f741..3bc60a2b159e 100644
--- a/arch/microblaze/kernel/syscall_table.S
+++ b/arch/microblaze/kernel/syscall_table.S
@@ -1,6 +1,5 @@
/* SPDX-License-Identifier: GPL-2.0 */
-#define __SYSCALL(nr, entry, nargs) .long entry
+#define __SYSCALL(nr, entry) .long entry
ENTRY(sys_call_table)
#include <asm/syscall_table.h>
-#undef __SYSCALL