diff options
author | Dmitri Vorobiev <dmitri.vorobiev@movial.com> | 2009-03-30 22:53:24 +0300 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-05-14 13:50:25 +0100 |
commit | 36a09d7848abf017ea11ea949372f46edc1350da (patch) | |
tree | 4663bb211aa3a70f196dbbca6d211787b02e668e /arch/mips/sgi-ip32 | |
parent | 1291417eb61d1cd3fc69e295c2e9b83c5f6a8ff9 (diff) | |
download | op-kernel-dev-36a09d7848abf017ea11ea949372f46edc1350da.zip op-kernel-dev-36a09d7848abf017ea11ea949372f46edc1350da.tar.gz |
MIPS: IP32: ip32_be_handler symbol is needlessly defined global
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>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sgi-ip32')
-rw-r--r-- | 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> -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 = regs->cp0_cause & 4; |