Skip to content

Commit

Permalink
MIPS: IP32: ip32_be_handler symbol is needlessly defined global
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Ralf Baechle <[email protected]>
  • Loading branch information
dmvo authored and ralfbaechle committed May 14, 2009
1 parent 1291417 commit 36a09d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/sgi-ip32/ip32-berr.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 36a09d7

Please sign in to comment.