git.openpandora.org
/
pandora-kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
340e8dc
)
ipv6: Various cleanups in ip6_route.c
author
David S. Miller
<davem@davemloft.net>
Sat, 3 Dec 2011 22:50:45 +0000
(17:50 -0500)
committer
David S. Miller
<davem@davemloft.net>
Sat, 3 Dec 2011 22:50:45 +0000
(17:50 -0500)
1) x == NULL --> !x
2) x != NULL --> x
3) if() --> if ()
4) while() --> while ()
5) (x & BIT) == 0 --> !(x & BIT)
6) (x&BIT) --> (x & BIT)
7) x=y --> x = y
8) (BIT1|BIT2) --> (BIT1 | BIT2)
9) if ((x & BIT)) --> if (x & BIT)
10) proper argument and struct member alignment
Signed-off-by: David S. Miller <davem@davemloft.net>
No differences found