projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4c7c997
)
sh: Fix sys_pwritev() syscall table entry for sh32.
author
Paul Mundt
<lethal@linux-sh.org>
Thu, 11 Jun 2009 06:33:53 +0000
(09:33 +0300)
committer
Paul Mundt
<lethal@linux-sh.org>
Thu, 11 Jun 2009 06:33:53 +0000
(09:33 +0300)
There was a typo here that had this as sys_writev() instead of
sys_pwritev(), fix this up. sh64 got this right, as did the preadv()
case.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/kernel/syscalls_32.S
patch
|
blob
|
blame
|
history
diff --git
a/arch/sh/kernel/syscalls_32.S
b/arch/sh/kernel/syscalls_32.S
index 05202edd8e212a2a9fbfecdb0dd09024ce313389..6118f358f950069faead49826086bf72c6ecdee4 100644
(file)
--- a/
arch/sh/kernel/syscalls_32.S
+++ b/
arch/sh/kernel/syscalls_32.S
@@
-350,4
+350,4
@@
ENTRY(sys_call_table)
.long sys_pipe2
.long sys_inotify_init1
.long sys_preadv
- .long sys_writev
+ .long sys_
p
writev