From: Julia Lawall Date: Mon, 27 Jul 2009 19:59:48 +0000 (+0200) Subject: Staging: Correct use of ! and & X-Git-Tag: v2.6.32-rc1~668^2~268 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2e9ab1e72c631041f8a1c1d1fc7e5359e7e4a476;p=pandora-kernel.git Staging: Correct use of ! and & Correct priority problem in the use of ! and &. The semantic patch that makes this change is as follows: (http://www.emn.fr/x-info/coccinelle/) // @@ expression E; constant C; @@ - !E & C + !(E & C) // Signed-off-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed