From: Julia Lawall Date: Wed, 12 Aug 2009 14:51:09 +0000 (+0200) Subject: USB: isp1362: Correct use of ! and & X-Git-Tag: v2.6.32-rc1~174^2~59 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d2b0814f15f94506156943c8148da90b6491453;p=pandora-kernel.git USB: isp1362: 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