public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH V1] mips: fix mips syscall wrapper sys_32_ipc bug
@ 2009-03-09  1:45 Xiaotian Feng
  2009-03-10 21:30 ` Ralf Baechle
  0 siblings, 1 reply; 2+ messages in thread
From: Xiaotian Feng @ 2009-03-09  1:45 UTC (permalink / raw)
  To: ralf, linux-mips; +Cc: linux-kernel

There's a typo in mips syscall wrapper sys_32_ipc. If CONFIG_SYSVIPC
is not set, it will cause mips linux compile error.

Signed-off-by: Xiaotian Feng <xiaotian.feng@windriver.com>
---
 arch/mips/kernel/linux32.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/kernel/linux32.c b/arch/mips/kernel/linux32.c
index 2f8452b..1a86f84 100644
--- a/arch/mips/kernel/linux32.c
+++ b/arch/mips/kernel/linux32.c
@@ -235,7 +235,7 @@ SYSCALL_DEFINE6(32_ipc, u32, call, long, first, long, second, long, third,
 #else
 
 SYSCALL_DEFINE6(32_ipc, u32, call, int, first, int, second, int, third,
-	u32, ptr, u32 fifth)
+	u32, ptr, u32, fifth)
 {
 	return -ENOSYS;
 }
-- 
1.5.5.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH V1] mips: fix mips syscall wrapper sys_32_ipc bug
  2009-03-09  1:45 [PATCH V1] mips: fix mips syscall wrapper sys_32_ipc bug Xiaotian Feng
@ 2009-03-10 21:30 ` Ralf Baechle
  0 siblings, 0 replies; 2+ messages in thread
From: Ralf Baechle @ 2009-03-10 21:30 UTC (permalink / raw)
  To: Xiaotian Feng; +Cc: linux-mips, linux-kernel

On Mon, Mar 09, 2009 at 09:45:12AM +0800, Xiaotian Feng wrote:

> 
> There's a typo in mips syscall wrapper sys_32_ipc. If CONFIG_SYSVIPC
> is not set, it will cause mips linux compile error.
> 
> Signed-off-by: Xiaotian Feng <xiaotian.feng@windriver.com>

Thanks, applied.

  Ralf

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-03-10 21:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-09  1:45 [PATCH V1] mips: fix mips syscall wrapper sys_32_ipc bug Xiaotian Feng
2009-03-10 21:30 ` Ralf Baechle

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox