Received: from mail.onstor.com (66.201.51.107) by exch1.onstor.net
 (10.0.0.225) with Microsoft SMTP Server id 8.1.311.2; Sun, 8 Mar 2009
 18:42:43 -0700
Received: from psmtp.com ([64.18.0.97]) by mail.onstor.com with Microsoft
 SMTPSVC(6.0.3790.3959);	 Sun, 8 Mar 2009 18:42:43 -0700
Received: from source ([213.58.128.207]) by exprod5mx274.postini.com
 ([64.18.4.13]) with SMTP;	Sun, 08 Mar 2009 17:42:43 PST
Received: from localhost.localdomain ([127.0.0.1]:47783 "EHLO
	ftp.linux-mips.org") by ftp.linux-mips.org with ESMTP	id S20808707AbZCIBmU
 (ORCPT <rfc822;andy.sharp@onstor.com>);	Mon, 9 Mar 2009 01:42:20 +0000
Received: with ECARTIS (v1.0.0; list linux-mips); Mon, 09 Mar 2009 01:42:03
 +0000 (GMT)
Received: from mail.windriver.com ([147.11.1.11]:39113 "EHLO mail.wrs.com")	by
 ftp.linux-mips.org with ESMTP id S20808720AbZCIBmA (ORCPT
	<rfc822;linux-mips@linux-mips.org>); Mon, 9 Mar 2009 01:42:00 +0000
Received: from ALA-MAIL03.corp.ad.wrs.com (ala-mail03 [147.11.57.144])	by
 mail.wrs.com (8.13.6/8.13.6) with ESMTP id n291fqBR003540;	Sun, 8 Mar 2009
 18:41:52 -0700 (PDT)
Received: from ala-mail06.corp.ad.wrs.com ([147.11.57.147]) by
 ALA-MAIL03.corp.ad.wrs.com with Microsoft SMTPSVC(6.0.3790.1830);	 Sun, 8 Mar
 2009 18:41:52 -0700
Received: from localhost.localdomain ([128.224.158.187]) by
 ala-mail06.corp.ad.wrs.com with Microsoft SMTPSVC(6.0.3790.1830);	 Sun, 8 Mar
 2009 18:41:51 -0700
From: Xiaotian Feng <Xiaotian.Feng@windriver.com>
To: "ralf@linux-mips.org" <ralf@linux-mips.org>, "linux-mips@linux-mips.org"
	<linux-mips@linux-mips.org>
CC: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Sender: "linux-mips-bounce@linux-mips.org" <linux-mips-bounce@linux-mips.org>
Date: Sun, 8 Mar 2009 18:45:12 -0700
Subject: [PATCH V1] mips: fix mips syscall wrapper sys_32_ipc bug
Thread-Topic: [PATCH V1] mips: fix mips syscall wrapper sys_32_ipc bug
Thread-Index: AcmgWFcsF0JfSk2+QKe15Ix72i//yA==
Message-ID: <1236563112-24287-1-git-send-email-Xiaotian.Feng@windriver.com>
Accept-Language: en-US
Content-Language: en-US
X-MS-Exchange-Organization-AuthAs: Internal
X-MS-Exchange-Organization-AuthMechanism: 0b
X-MS-Exchange-Organization-AuthSource: exch1.onstor.net
X-MS-Has-Attach:
X-Auto-Response-Suppress: All
X-MS-TNEF-Correlator:
x-originalarrivaltime: 09 Mar 2009 01:41:51.0997 (UTC)
 FILETIME=[385D3AD0:01C9A058]
errors-to: linux-mips-bounce@linux-mips.org
x-pstn-levels: (S:59.00441/99.90000 CV:99.9000 FC:95.5390 LC:95.5390
 R:95.9108 P:95.9108 M:97.0282 C:98.6951 )
x-pstn-neptune: 0/0/0.00/0
x-ems-proccessed: 2K3Xl1OQTInXD6xxuA8z3Q==
x-ems-stamp: p0z3SmY1fAPL3aMP3qtN9g==
x-list: linux-mips
x-archive-position: 22042
x-ecartis-version: Ecartis v1.0.0
x-original-sender: Xiaotian.Feng@windriver.com
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

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, s=
econd, long, third,
 #else
=20
 SYSCALL_DEFINE6(32_ipc, u32, call, int, first, int, second, int, third,
-	u32, ptr, u32 fifth)
+	u32, ptr, u32, fifth)
 {
 	return -ENOSYS;
 }
--=20
1.5.5.1


