]> git.baikalelectronics.ru Git - kernel.git/commit
USB: isp1362: Correct use of ! and &
authorJulia Lawall <julia@diku.dk>
Wed, 12 Aug 2009 14:51:09 +0000 (16:51 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Wed, 23 Sep 2009 13:46:33 +0000 (06:46 -0700)
commitffa04bcc248bfe7d0debed52e70b4b735fc90ce1
tree65b44d1dfcfd0daa495f6c8998737a522f150605
parent4b958a75a9da38e0a793d77e9b2ecd4eef6b2443
USB: isp1362: 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/usb/host/isp1362-hcd.c