[PATCH 1/1] fs/jffs2/compr.c: remove 0 assignment on static

From: Fabian Frederick
Date: Mon May 19 2014 - 15:31:55 EST


static values are automatically initialized to NULL

Cc: David Woodhouse <dwmw2@xxxxxxxxxxxxx>
Cc: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
Signed-off-by: Fabian Frederick <fabf@xxxxxxxxx>
---
fs/jffs2/compr.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fs/jffs2/compr.c b/fs/jffs2/compr.c
index 4849a4c..a673221 100644
--- a/fs/jffs2/compr.c
+++ b/fs/jffs2/compr.c
@@ -25,7 +25,8 @@ static LIST_HEAD(jffs2_compressor_list);
static int jffs2_compression_mode = JFFS2_COMPR_MODE_PRIORITY;

/* Statistics for blocks stored without compression */
-static uint32_t none_stat_compr_blocks=0,none_stat_decompr_blocks=0,none_stat_compr_size=0;
+static uint32_t none_stat_compr_blocks, none_stat_decompr_blocks,
+ none_stat_compr_size;


/*
--
1.8.4.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/