Staging: rtl8192su: Correct use of ! and &
authorJulia Lawall <julia@diku.dk>
Fri, 5 Jun 2009 15:07:38 +0000 (17:07 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 19 Jun 2009 18:00:54 +0000 (11:00 -0700)
commit385269885f156c76518748fcb215bd2ca81ef000
tree1e30f35d9b5560f45176e5a7c171634a9d0b2059
parent36dbd40139b5adcd60a62be10b6bf83289d79ea4
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/)

// <smpl>
@@ expression E; constant C; @@
- !E & C
+ !(E & C)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/rtl8192su/ieee80211/ieee80211_wx.c