From: Julia Lawall Date: Fri, 5 Jun 2009 15:07:38 +0000 (+0200) Subject: Staging: rtl8192su: Correct use of ! and & X-Git-Tag: v2.6.31-rc1~105^2~44 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=385269885f156c76518748fcb215bd2ca81ef000;p=pandora-kernel.git Staging: rtl8192su: 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