diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2009-09-17 02:25:07 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-09-17 20:07:51 +0200 |
commit | 982f6ffeeed5ef6104cfd72e517ff9e7a9270fda (patch) | |
tree | cfe3546c4983d29deb1794890dcfd26ea480296a /arch/mips/kernel/smtc.c | |
parent | 2882b0c63ac6085fd5c18959240b6f7d6ffb8d5b (diff) | |
download | op-kernel-dev-982f6ffeeed5ef6104cfd72e517ff9e7a9270fda.zip op-kernel-dev-982f6ffeeed5ef6104cfd72e517ff9e7a9270fda.tar.gz |
MIPS: Remove useless zero initializations.
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 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/mips/kernel/smtc.c b/arch/mips/kernel/smtc.c index c16bb6d..1a466ba 100644 --- a/arch/mips/kernel/smtc.c +++ b/arch/mips/kernel/smtc.c @@ -95,14 +95,14 @@ void init_smtc_stats(void); /* Global SMTC Status */ -unsigned int smtc_status = 0; +unsigned int smtc_status; /* Boot command line configuration overrides */ static int vpe0limit; -static int ipibuffers = 0; -static int nostlb = 0; -static int asidmask = 0; +static int ipibuffers; +static int nostlb; +static int asidmask; unsigned long smtc_asid_mask = 0xff; static int __init vpe0tcs(char *str) @@ -151,7 +151,7 @@ __setup("asidmask=", asidmask_set); #ifdef CONFIG_SMTC_IDLE_HOOK_DEBUG -static int hang_trig = 0; +static int hang_trig; static int __init hangtrig_enable(char *s) { |