From: Supriya Karanth Date: Thu, 12 Mar 2015 04:26:19 +0000 (+0900) Subject: staging: rtl8188eu: remove intialization of static ints X-Git-Tag: omap-for-v4.1/fixes-rc1~165^2~138^2~395 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37e080787925a972b1eb866d2cd2d75badfb7a24;p=pandora-kernel.git staging: rtl8188eu: remove intialization 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 ; Signed-off-by: Supriya Karanth Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed