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; Mon, 30 Mar 2009
 14:11:08 -0700
Received: from psmtp.com ([64.18.0.98]) by mail.onstor.com with Microsoft
 SMTPSVC(6.0.3790.3959);	 Mon, 30 Mar 2009 14:11:08 -0700
Received: from source ([213.58.128.207]) by exprod5mx275.postini.com
 ([64.18.4.10]) with SMTP;	Mon, 30 Mar 2009 13:11:08 PST
Received: from localhost.localdomain ([127.0.0.1]:56510 "EHLO
	ftp.linux-mips.org") by ftp.linux-mips.org with ESMTP	id S20027317AbZC3Tyz
 (ORCPT <rfc822;andy.sharp@onstor.com>);	Mon, 30 Mar 2009 20:54:55 +0100
Received: with ECARTIS (v1.0.0; list linux-mips); Mon, 30 Mar 2009 20:54:38
 +0100 (BST)
Received: from gw02.mail.saunalahti.fi ([195.197.172.116]:39575 "EHLO
	gw02.mail.saunalahti.fi") by ftp.linux-mips.org with ESMTP	id
 S20025333AbZC3Txs (ORCPT <rfc822;linux-mips@linux-mips.org>);	Mon, 30 Mar
 2009 20:53:48 +0100
Received: from localhost.localdomain (a88-114-245-69.elisa-laajakaista.fi
 [88.114.245.69])	by gw02.mail.saunalahti.fi (Postfix) with ESMTP id
 946861399EB;	Mon, 30 Mar 2009 22:53:44 +0300 (EEST)
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: Mon, 30 Mar 2009 12:53:24 -0700
Subject: [PATCH 2/4] [MIPS] ip32: ip32_be_handler symbol is needlessly
 defined global
Thread-Topic: [PATCH 2/4] [MIPS] ip32: ip32_be_handler symbol is needlessly
 defined global
Thread-Index: AcmxfAvfdlMRmawURDKN8n5LAgrytw==
Message-ID: <1238442806-11013-3-git-send-email-dmitri.vorobiev@movial.com>
References: <1238442806-11013-1-git-send-email-dmitri.vorobiev@movial.com>
In-Reply-To: <1238442806-11013-1-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: 30 Mar 2009 21:11:08.0236 (UTC)
 FILETIME=[0B6A80C0:01C9B17C]
errors-to: linux-mips-bounce@linux-mips.org
x-pstn-levels: (S:82.96415/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: 1/1/1.00/94
x-ems-proccessed: 2K3Xl1OQTInXD6xxuA8z3Q==
x-ems-stamp: 4RgEl+3WqzK0UwcRV5WHCQ==
x-list: linux-mips
x-archive-position: 22190
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 file arch/mips/sgi-ip32/ip32-berr.c needlessly defines the function
ip32_be_handler() as global, and this patch makes it static.

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

diff --git a/arch/mips/sgi-ip32/ip32-berr.c b/arch/mips/sgi-ip32/ip32-berr.=
c
index a278e91..afc1cad 100644
--- a/arch/mips/sgi-ip32/ip32-berr.c
+++ b/arch/mips/sgi-ip32/ip32-berr.c
@@ -16,7 +16,7 @@
 #include <asm/ptrace.h>
 #include <asm/tlbdebug.h>
=20
-int ip32_be_handler(struct pt_regs *regs, int is_fixup)
+static int ip32_be_handler(struct pt_regs *regs, int is_fixup)
 {
 	int data =3D regs->cp0_cause & 4;
=20
--=20
1.5.6.3


