Skip to content

Commit

Permalink
MIPS: IP32: Two symbols can become static
Browse files Browse the repository at this point in the history
The file arch/mips/mm/sc-rm7k.c needlessly defines two global symbols:

rm7k_sc_ops
rm7k_tcache_enabled

This patch makes these symbols 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 1d9c114 commit 1291417
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/mips/mm/sc-rm7k.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extern unsigned long icache_way_size, dcache_way_size;

#include <asm/r4kcache.h>

int rm7k_tcache_enabled;
static int rm7k_tcache_enabled;

/*
* Writeback and invalidate the primary cache dcache before DMA.
Expand Down Expand Up @@ -121,7 +121,7 @@ static void rm7k_sc_disable(void)
clear_c0_config(RM7K_CONF_SE);
}

struct bcache_ops rm7k_sc_ops = {
static struct bcache_ops rm7k_sc_ops = {
.bc_enable = rm7k_sc_enable,
.bc_disable = rm7k_sc_disable,
.bc_wback_inv = rm7k_sc_wback_inv,
Expand Down

0 comments on commit 1291417

Please sign in to comment.