]> nv-tegra.nvidia Code Review - linux-2.6.git/blobdiff - arch/mips/kernel/smtc.c
MIPS: Remove useless zero initializations.
[linux-2.6.git] / arch / mips / kernel / smtc.c
index c16bb6d6c25c64f1562ca85f7f6d5a8a7d450a37..1a466baf0edf0eccd6fa200454e63772f78da630 100644 (file)
@@ -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)
 {