summaryrefslogtreecommitdiffstats
path: root/include/asm-sh/unistd.h
diff options
context:
space:
mode:
authorPaul Mundt2005-08-13 19:28:06 +0200
committerLinus Torvalds2005-08-13 23:23:39 +0200
commitf73bc8cae3481adc4188a5f34a89025c10133b0a (patch)
tree794793d9d6d67cfaa55d141083527297bcc14bd1 /include/asm-sh/unistd.h
parentFix up mmap of /dev/kmem (diff)
downloadkernel-qcow2-linux-f73bc8cae3481adc4188a5f34a89025c10133b0a.tar.gz
kernel-qcow2-linux-f73bc8cae3481adc4188a5f34a89025c10133b0a.tar.xz
kernel-qcow2-linux-f73bc8cae3481adc4188a5f34a89025c10133b0a.zip
[PATCH] sh: Make _syscall6() do the right thing.
There was a rather silly and embarrassing typo in the sh _syscall6(). For the syscall ABI we have the trapa value specified as 0x10 + number of arguments, this was being set incorrectly in the _syscall6() case which ended up causing some problems for users. Signed-off-by: Paul Mundt <lethal@linux-sh.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-sh/unistd.h')
-rw-r--r--include/asm-sh/unistd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-sh/unistd.h b/include/asm-sh/unistd.h
index 245447081f0d..4e7701d6d23c 100644
--- a/include/asm-sh/unistd.h
+++ b/include/asm-sh/unistd.h
@@ -406,7 +406,7 @@ register long __sc6 __asm__ ("r6") = (long) arg3; \
register long __sc7 __asm__ ("r7") = (long) arg4; \
register long __sc0 __asm__ ("r0") = (long) arg5; \
register long __sc1 __asm__ ("r1") = (long) arg6; \
-__asm__ __volatile__ ("trapa #0x15" \
+__asm__ __volatile__ ("trapa #0x16" \
: "=z" (__sc0) \
: "0" (__sc0), "r" (__sc4), "r" (__sc5), "r" (__sc6), "r" (__sc7), \
"r" (__sc3), "r" (__sc1) \