From: Georgiana Rodica Chelu Date: Tue, 18 Mar 2014 15:26:57 +0000 (+0200) Subject: staging: luster: do not combine value 0 with | X-Git-Tag: v3.15-rc1~139^2~97 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34d1f637cbf04eb88db10605338ccc6f8e9dedb8;p=pandora-kernel.git staging: luster: do not combine value 0 with | There is no point in combining a variable that is 0 with other things with | The semantic patch used: @@ expression x,e,e1; statement S; @@ if (x == 0) { <... when != x = e1 when != while(...) S when != for(...;...;...) S - x |= e + x = e ...> } Signed-off-by: Georgiana Rodica Chelu Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed