diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2021-03-01 15:23:02 +0100 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2021-03-02 13:21:22 +0100 |
commit | ce372128a79bc2db9966302fb1e3608194455ca7 (patch) | |
tree | 78d0ee5a60866ce41cd07412058043859a0ba973 /arch/microblaze/kernel/syscall_table.S | |
parent | Linux 5.12-rc1 (diff) | |
download | linux-ce372128a79bc2db9966302fb1e3608194455ca7.tar.xz linux-ce372128a79bc2db9966302fb1e3608194455ca7.zip |
microblaze: syscalls: switch to generic syscalltbl.sh
Many architectures duplicate similar shell scripts.
This commit converts microblaze to use scripts/syscalltbl.sh.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Link: https://lore.kernel.org/r/20210301142303.343727-1-masahiroy@kernel.org
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/microblaze/kernel/syscall_table.S')
-rw-r--r-- | arch/microblaze/kernel/syscall_table.S | 3 |
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 |