| To: | ralf@linux-mips.org, linux-mips@linux-mips.org |
|---|---|
| Subject: | [PATCH V1] mips: fix mips syscall wrapper sys_32_ipc bug |
| From: | Xiaotian Feng <Xiaotian.Feng@windriver.com> |
| Date: | Mon, 9 Mar 2009 09:45:12 +0800 |
| Cc: | linux-kernel@vger.kernel.org |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| Sender: | linux-mips-bounce@linux-mips.org |
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
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: Ingenic JZ4730 - illegal instruction, ard |
|---|---|
| Next by Date: | Re: Ingenic JZ4730 - illegal instruction, Kevin D. Kissell |
| Previous by Thread: | gcc: mips32 vs mips3, Marian Jancar |
| Next by Thread: | Re: [PATCH V1] mips: fix mips syscall wrapper sys_32_ipc bug, Ralf Baechle |
| Indexes: | [Date] [Thread] [Top] [All Lists] |