commit | 290d4c23506545633878132860cc7d4fac0da23e | [log] [tgz] |
---|---|---|
author | Diego Liziero <diegoliz@gmail.com> | Tue Apr 14 04:33:54 2009 +0200 |
committer | Greg Kroah-Hartman <gregkh@suse.de> | Fri Jun 19 11:00:37 2009 -0700 |
tree | b9a07f7a8d1a74e9c60aad9799b16bf472f76bf1 | |
parent | 5aaeab6606dc06bea229bf2774ac1661923c2f07 [diff] |
Staging winbond: boolean negation and bitwise operation in wrong order The semantic patch that makes this change is: (http://www.emn.fr/x-info/coccinelle/) @@ expression E; constant C; @@ ( - !E == C + E != C ) Signed-off-by: Diego Liziero <diegoliz@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>