From: Julia Lawall Date: Sat, 19 Sep 2009 07:13:43 +0000 (+0200) Subject: USB: skeleton: Correct use of ! and & X-Git-Tag: v2.6.33-rc1~315^2~110 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4de84057598599bbf90bf1deae923bc33f571475;p=pandora-kernel.git USB: skeleton: Correct use of ! and & Correct priority problem in the use of ! and &. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ expression E; constant C; @@ - !E & C + !(E & C) // Signed-off-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed