]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'ipv4-null-cmp'
authorDavid S. Miller <davem@davemloft.net>
Fri, 3 Apr 2015 16:11:15 +0000 (12:11 -0400)
committerDavid S. Miller <davem@davemloft.net>
Fri, 3 Apr 2015 16:11:15 +0000 (12:11 -0400)
commit6031f4d1891aba496aa3fd49dfc05a49f48f6637
tree627f419868eac50f1ae8582915827b2525fc5999
parent6b95aa5f2489d035bd2346fbdd4c2d5ce6234089
parentd524a2e9c6451da5c542a3a17f09d8ca255b5dcc
Merge branch 'ipv4-null-cmp'

Ian Morris says:

====================
ipv4: coding style - comparisons with NULL

Per the suggestion of Joe Perches, attached is a patch which aligns the
coding style in ipv4 for comparisons with NULL.

The code uses multiple different styles when comparing with NULL (I.e.
x == NULL and !x as well as x != NULL and x). Generally the latter form
is preferred in netdev and so this changes aligns the code to this style.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>