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, 22 Mar 2009
 15:14:23 -0700
Received: from psmtp.com ([64.18.0.116]) by mail.onstor.com with Microsoft
 SMTPSVC(6.0.3790.3959);	 Sun, 22 Mar 2009 15:14:23 -0700
Received: from source ([213.58.128.207]) by exprod5mx230.postini.com
 ([64.18.4.10]) with SMTP;	Sun, 22 Mar 2009 15:14:23 PDT
Received: from localhost.localdomain ([127.0.0.1]:23455 "EHLO
	ftp.linux-mips.org") by ftp.linux-mips.org with ESMTP	id S21370122AbZCVWOS
 (ORCPT <rfc822;andy.sharp@onstor.com>);	Sun, 22 Mar 2009 22:14:18 +0000
Received: with ECARTIS (v1.0.0; list linux-mips); Sun, 22 Mar 2009 22:14:01
 +0000 (GMT)
Received: from gw01.mail.saunalahti.fi ([195.197.172.115]:47510 "EHLO
	gw01.mail.saunalahti.fi") by ftp.linux-mips.org with ESMTP	id
 S21370133AbZCVWMr (ORCPT <rfc822;linux-mips@linux-mips.org>);	Sun, 22 Mar
 2009 22:12:47 +0000
Received: from localhost.localdomain (a88-114-245-69.elisa-laajakaista.fi
 [88.114.245.69])	by gw01.mail.saunalahti.fi (Postfix) with ESMTP id
 89486151410;	Mon, 23 Mar 2009 00:12:44 +0200 (EET)
From: Dmitri Vorobiev <dmitri.vorobiev@movial.com>
To: "ralf@linux-mips.org" <ralf@linux-mips.org>, "linux-mips@linux-mips.org"
	<linux-mips@linux-mips.org>
CC: Dmitri Vorobiev <dmitri.vorobiev@movial.com>
Sender: "linux-mips-bounce@linux-mips.org" <linux-mips-bounce@linux-mips.org>
Date: Sun, 22 Mar 2009 15:12:29 -0700
Subject: [PATCH 3/3] [MIPS] Make a needlessly global symbol static in
 arch/mips/kernel/smp.c
Thread-Topic: [PATCH 3/3] [MIPS] Make a needlessly global symbol static in
 arch/mips/kernel/smp.c
Thread-Index: AcmrO46TS/s5yFHvRRq3DtP7i2zHGg==
Message-ID: <1237759949-8223-4-git-send-email-dmitri.vorobiev@movial.com>
References: <1237759949-8223-1-git-send-email-dmitri.vorobiev@movial.com>
 <1237759949-8223-2-git-send-email-dmitri.vorobiev@movial.com>
 <1237759949-8223-3-git-send-email-dmitri.vorobiev@movial.com>
In-Reply-To: <1237759949-8223-3-git-send-email-dmitri.vorobiev@movial.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: 22 Mar 2009 22:14:23.0399 (UTC)
 FILETIME=[8E346B70:01C9AB3B]
errors-to: linux-mips-bounce@linux-mips.org
x-pstn-levels: (S:79.71474/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: 2/1/0.50/57
x-ems-proccessed: 2K3Xl1OQTInXD6xxuA8z3Q==
x-ems-stamp: ARAlvvQ1h1A37uEF5ZNNJg==
x-list: linux-mips
x-archive-position: 22122
x-ecartis-version: Ecartis v1.0.0
x-original-sender: dmitri.vorobiev@movial.com
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0

The variable cpu_callin_map is needlessly defined global, so let's
make it static now.

Build-tested using malta_defconfig.

Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.com>
---
 arch/mips/kernel/smp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/kernel/smp.c b/arch/mips/kernel/smp.c
index 3da9470..c937506 100644
--- a/arch/mips/kernel/smp.c
+++ b/arch/mips/kernel/smp.c
@@ -44,7 +44,7 @@
 #include <asm/mipsmtregs.h>
 #endif /* CONFIG_MIPS_MT_SMTC */
=20
-volatile cpumask_t cpu_callin_map;	/* Bitmask of started secondaries */
+static volatile cpumask_t cpu_callin_map;	/* Bitmask of started secondarie=
s */
 int __cpu_number_map[NR_CPUS];		/* Map physical to logical */
 int __cpu_logical_map[NR_CPUS];		/* Map logical to physical */
=20
--=20
1.5.6.3


