commit | 385269885f156c76518748fcb215bd2ca81ef000 | [log] [tgz] |
---|---|---|
author | Julia Lawall <julia@diku.dk> | Fri Jun 05 17:07:38 2009 +0200 |
committer | Greg Kroah-Hartman <gregkh@suse.de> | Fri Jun 19 11:00:54 2009 -0700 |
tree | 1e30f35d9b5560f45176e5a7c171634a9d0b2059 | |
parent | 36dbd40139b5adcd60a62be10b6bf83289d79ea4 [diff] |
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>