diff options
author | David Howells <dhowells@redhat.com> | 2009-04-15 18:34:46 (GMT) |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-15 20:55:13 (GMT) |
commit | 76d320a5072f93abb913e9b9d84304f819c34b96 (patch) | |
tree | 9178e09ebcf17259bf7b6b3e412367ec6be57171 /arch/mn10300/kernel | |
parent | 3bb4e153a7819c53911aa8a767c22bac9871a202 (diff) | |
download | linux-fsl-qoriq-76d320a5072f93abb913e9b9d84304f819c34b96.tar.xz |
MN10300: Wire up missing system calls
Wire up missing system calls preadv() and pwritev().
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/mn10300/kernel')
-rw-r--r-- | arch/mn10300/kernel/entry.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mn10300/kernel/entry.S b/arch/mn10300/kernel/entry.S index 34ab5a2..3dc3e46 100644 --- a/arch/mn10300/kernel/entry.S +++ b/arch/mn10300/kernel/entry.S @@ -723,6 +723,8 @@ ENTRY(sys_call_table) .long sys_dup3 .long sys_pipe2 .long sys_inotify_init1 + .long sys_preadv + .long sys_pwritev /* 335 */ nr_syscalls=(.-sys_call_table)/4 |