Octavian Purdila 09ad9bc752 net: use net_eq to compare nets
Generated with the following semantic patch

@@
struct net *n1;
struct net *n2;
@@
- n1 == n2
+ net_eq(n1, n2)

@@
struct net *n1;
struct net *n2;
@@
- n1 != n2
+ !net_eq(n1, n2)

applied over {include,net,drivers/net}.

Signed-off-by: Octavian Purdila <opurdila@ixiacom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2009-11-25 15:14:13 -08:00
..
2009-11-25 15:14:13 -08:00
2009-10-11 23:03:47 -07:00
2009-11-25 15:14:13 -08:00
2009-06-03 02:51:04 -07:00
2008-03-17 22:46:46 -07:00
2008-11-16 23:01:49 -08:00
2008-12-29 19:40:46 -08:00
2009-11-25 15:14:13 -08:00
2009-05-06 16:45:07 -07:00