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-11-25 15:14:13 -08:00
2009-10-18 21:31:59 -07:00
2009-09-14 17:03:05 -07:00
2009-09-14 17:03:05 -07:00
2009-09-14 17:03:05 -07:00
2009-10-20 18:55:45 -07:00
2009-09-14 17:03:05 -07:00
2009-10-07 14:50:30 -07:00
2009-09-14 17:03:05 -07:00
2009-11-25 15:14:13 -08:00
2009-09-14 17:03:05 -07:00
2009-11-10 20:54:44 -08:00
2009-10-24 06:07:57 -07:00