From: Supriya Karanth Date: Tue, 3 Mar 2015 14:48:21 +0000 (+0900) Subject: staging: lustre: remove initialization of static ints X-Git-Tag: omap-for-v4.2/o2_dc~155^2~138^2~648 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=225f597c60da646a6df1f7ac4152577a0c5fd56c;p=pandora-kernel.git staging: lustre: remove initialization of static ints static ints are initialized to 0 by the compiler. Explicit initialization is not necessary. Found by checkpatch.pl - ERROR: do not initialise statics to 0 or NULL changes made using coccinelle script: @@ type T; identifier var; @@ -static T var = 0; +static T var; Signed-off-by: Supriya Karanth Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed