diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-07-27 18:36:32 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-07-31 21:35:24 +0100 |
commit | 97aef63c9f403e4a3d07e3da9e468add0cd93385 (patch) | |
tree | 0627ba689e4e90bbad8033b448e164fdc9aaaa4a /arch/mips/kernel/smtc.c | |
parent | 033890b084adfa367c544864451d7730552ce8bf (diff) | |
download | op-kernel-dev-97aef63c9f403e4a3d07e3da9e468add0cd93385.zip op-kernel-dev-97aef63c9f403e4a3d07e3da9e468add0cd93385.tar.gz |
[MIPS] SMTC: Declare static what should be static.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/smtc.c')
-rw-r--r-- | arch/mips/kernel/smtc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/kernel/smtc.c b/arch/mips/kernel/smtc.c index 596c5a7..2bfb2ee 100644 --- a/arch/mips/kernel/smtc.c +++ b/arch/mips/kernel/smtc.c @@ -168,9 +168,9 @@ static int __init tintq(char *str) __setup("tintq=", tintq); -int imstuckcount[2][8]; +static int imstuckcount[2][8]; /* vpemask represents IM/IE bits of per-VPE Status registers, low-to-high */ -int vpemask[2][8] = { +static int vpemask[2][8] = { {0, 0, 1, 0, 0, 0, 0, 1}, {0, 0, 0, 0, 0, 0, 0, 1} }; |