Commit a246f581 authored by Paul Mundt's avatar Paul Mundt

sh: wire up finit_module syscall.

Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 4a71997a
...@@ -379,7 +379,8 @@ ...@@ -379,7 +379,8 @@
#define __NR_process_vm_readv 365 #define __NR_process_vm_readv 365
#define __NR_process_vm_writev 366 #define __NR_process_vm_writev 366
#define __NR_kcmp 367 #define __NR_kcmp 367
#define __NR_finit_module 368
#define NR_syscalls 368 #define NR_syscalls 369
#endif /* __ASM_SH_UNISTD_32_H */ #endif /* __ASM_SH_UNISTD_32_H */
...@@ -399,7 +399,8 @@ ...@@ -399,7 +399,8 @@
#define __NR_process_vm_readv 376 #define __NR_process_vm_readv 376
#define __NR_process_vm_writev 377 #define __NR_process_vm_writev 377
#define __NR_kcmp 378 #define __NR_kcmp 378
#define __NR_finit_module 379
#define NR_syscalls 379 #define NR_syscalls 380
#endif /* __ASM_SH_UNISTD_64_H */ #endif /* __ASM_SH_UNISTD_64_H */
...@@ -385,3 +385,4 @@ ENTRY(sys_call_table) ...@@ -385,3 +385,4 @@ ENTRY(sys_call_table)
.long sys_process_vm_readv /* 365 */ .long sys_process_vm_readv /* 365 */
.long sys_process_vm_writev .long sys_process_vm_writev
.long sys_kcmp .long sys_kcmp
.long sys_finit_module
...@@ -405,3 +405,4 @@ sys_call_table: ...@@ -405,3 +405,4 @@ sys_call_table:
.long sys_process_vm_readv .long sys_process_vm_readv
.long sys_process_vm_writev .long sys_process_vm_writev
.long sys_kcmp .long sys_kcmp
.long sys_finit_module
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment