kernel-ark/net/can
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
..
af_can.c net: use net_eq to compare nets 2009-11-25 15:14:13 -08:00
af_can.h
bcm.c CAN: use dev_get_by_index_rcu 2009-11-10 22:27:13 -08:00
Kconfig
Makefile
proc.c can: switch to seq_file 2009-08-29 00:19:38 -07:00
raw.c net: drop capability from protocol definitions 2009-11-05 21:40:17 -08:00