From: Julia Lawall Date: Wed, 24 Dec 2008 15:24:05 +0000 (+0100) Subject: Staging: rt2860,rt2870: Correct use of ! and & X-Git-Tag: v2.6.30-rc1~202^2~514 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7034ca4dda60f213d2d428da690710da6ea9a8df;p=pandora-kernel.git Staging: rt2860,rt2870: Correct use of ! and & IW_ENCODE_MODE is 0xF000 and thus !erq->flags & IW_ENCODE_MODE is always 0. I assume that !(erq->flags & IW_ENCODE_MODE) was intended. 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 + !(E & C) ) // Signed-off-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed