commit | 4de84057598599bbf90bf1deae923bc33f571475 | [log] [tgz] |
---|---|---|
author | Julia Lawall <julia@diku.dk> | Sat Sep 19 09:13:43 2009 +0200 |
committer | Greg Kroah-Hartman <gregkh@suse.de> | Fri Dec 11 11:55:14 2009 -0800 |
tree | e20aeea1f7fced7d01194ebab24dc3949e013a7e | |
parent | f0ad073f043b5ac04620bb80ecfc92114d348044 [diff] |
USB: skeleton: Correct use of ! and & Correct priority problem in the use of ! and &. The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <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>