Received: from milmhbs1.lsil.com (147.145.21.209) by coscas01.lsi.com
 (172.21.36.60) with Microsoft SMTP Server id 8.1.393.1; Wed, 3 Mar 2010
 01:44:24 -0700
Received: from mail1.lsil.com (mail1.lsil.com [147.145.40.21])	by
 milmhbs1.lsil.com (8.12.11/8.12.11) with ESMTP id o238iNXd017688	for
 <andy.sharp@lsi.com>; Wed, 3 Mar 2010 00:44:23 -0800
Received: from psmtp.com (na3sys009amx192.postini.com [74.125.149.173])	by
 mail1.lsil.com (8.12.11/8.12.11) with SMTP id o238iLwL017457	for
 <andy.sharp@lsi.com>; Wed, 3 Mar 2010 00:44:22 -0800 (PST)
Received: from source ([78.24.191.182]) by na3sys009amx192.postini.com
 ([74.125.148.14]) with SMTP;	Wed, 03 Mar 2010 08:44:22 GMT
Received: from localhost.localdomain ([127.0.0.1]:52460 "EHLO
        eddie.linux-mips.org" rhost-flags-OK-OK-OK-FAIL)        by
 eddie.linux-mips.org with ESMTP id S1491022Ab0CCIoU (ORCPT
        <rfc822;andy.sharp@lsi.com>); Wed, 3 Mar 2010 09:44:20 +0100
Received: with ECARTIS (v1.0.0; list linux-mips); Wed, 03 Mar 2010 09:44:02
 +0100 (CET)
Received: from mail.windriver.com ([147.11.1.11]:47810 "EHLO
        mail.windriver.com" rhost-flags-OK-OK-OK-OK) by eddie.linux-mips.org
        with ESMTP id S1491179Ab0CCInh (ORCPT
        <rfc822;linux-mips@linux-mips.org>); Wed, 3 Mar 2010 09:43:37 +0100
Received: from localhost.localdomain (pek-lpgbuild1.wrs.com [128.224.153.29])
        by mail.windriver.com (8.14.3/8.14.3) with ESMTP id o238hMYB014446;
        Wed, 3 Mar 2010 00:43:27 -0800 (PST)
From: Yang Shi <yang.shi@windriver.com>
To: "ddaney@caviumnetworks.com" <ddaney@caviumnetworks.com>,
	"ralf@linux-mips.org" <ralf@linux-mips.org>, "f.fainelli@gmail.com"
	<f.fainelli@gmail.com>
CC: "linux-mips@linux-mips.org" <linux-mips@linux-mips.org>
Sender: "linux-mips-bounce@linux-mips.org" <linux-mips-bounce@linux-mips.org>
Date: Wed, 3 Mar 2010 01:43:19 -0700
Subject: [PATCH 1/3] MIPS: Octeon: Remove superfluous on_each_cpu parameter
Thread-Topic: [PATCH 1/3] MIPS: Octeon: Remove superfluous on_each_cpu
 parameter
Thread-Index: Acq6rbnTM/2bcHUBQv2CexzS/I3dvQ==
Message-ID:
 <fd8fb199609e60a5b6c10e2073976a3f6b599109.1267604875.git.yang.shi@windriver.com>
References: <1267605801-5305-1-git-send-email-yang.shi@windriver.com>
In-Reply-To: <1267605801-5305-1-git-send-email-yang.shi@windriver.com>
Accept-Language: en-US
Content-Language: en-US
X-MS-Exchange-Organization-AuthAs: Anonymous
X-MS-Exchange-Organization-AuthSource: coscas01.lsi.com
X-MS-Has-Attach:
X-Auto-Response-Suppress: All
X-MS-TNEF-Correlator:
x-scanned-by: MIMEDefang 2.39
errors-to: linux-mips-bounce@linux-mips.org
x-pstn-levels: (S:99.90000/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-settings: 3 (1.0000:1.0000) s cv gt3 gt2 gt1 r p m c 
x-pstn-addresses: from <yang.shi@windriver.com> [22/1] 
x-pstn-neptune: 0/0/0.00/0
x-list: linux-mips
x-original-sender: yang.shi@windriver.com
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

Now, on_each_cpu just need three parameters, but the on_each_cpu
still uses four parameters in Octeon's setup.c. So, remove the
superfluous parameter.

Signed-off-by: Yang Shi <yang.shi@windriver.com>
---
 arch/mips/cavium-octeon/setup.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/cavium-octeon/setup.c b/arch/mips/cavium-octeon/setu=
p.c
index b321d3b..4eaa35f 100644
--- a/arch/mips/cavium-octeon/setup.c
+++ b/arch/mips/cavium-octeon/setup.c
@@ -230,7 +230,7 @@ static void octeon_hal_setup_per_cpu_reserved32(void *u=
nused)
 void octeon_hal_setup_reserved32(void)
 {
 #ifdef CONFIG_CAVIUM_RESERVE32_USE_WIRED_TLB
-	on_each_cpu(octeon_hal_setup_per_cpu_reserved32, NULL, 0, 1);
+	on_each_cpu(octeon_hal_setup_per_cpu_reserved32, NULL, 1);
 #endif
 }
=20
--=20
1.6.3.3


