Roland,

Here is a minor fix for powerpc syscalls.h.

---
From: Ananth N Mavinakayanahalli <[EMAIL PROTECTED]>

Remove return 0 from static inline void syscall_set_arguments()
in powerpc/syscalls.h

---
 include/asm-powerpc/syscall.h |    1 -
 1 file changed, 1 deletion(-)

Index: kernel-utrace-8jul/include/asm-powerpc/syscall.h
===================================================================
--- kernel-utrace-8jul.orig/include/asm-powerpc/syscall.h
+++ kernel-utrace-8jul/include/asm-powerpc/syscall.h
@@ -67,7 +67,6 @@ static inline void syscall_set_arguments
 {
        BUG_ON(i + n > 6);
        memcpy(&regs->gpr[3 + i], args, n * sizeof(args[0]));
-       return 0;
 }
 
 #endif /* _ASM_SYSCALL_H */

Reply via email to