linux-stable/net/ieee802154
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
..
Kconfig net: add IEEE 802.15.4 socket family implementation 2009-06-09 05:25:32 -07:00
Makefile ieee802154: add LIST_PHY command support 2009-11-06 14:31:22 +03:00
af802154.h net: add IEEE 802.15.4 socket family implementation 2009-06-09 05:25:32 -07:00
af_ieee802154.c net: use net_eq to compare nets 2009-11-25 15:14:13 -08:00
dgram.c net: sk_drops consolidation 2009-10-14 20:40:11 -07:00
ieee802154.h ieee802154: add two nl802154 helpers 2009-11-06 14:32:21 +03:00
netlink.c ieee802154: add two nl802154 helpers 2009-11-06 14:32:21 +03:00
nl-mac.c ieee802154: add PHY_NAME to LIST_IFACE command results 2009-11-06 14:32:22 +03:00
nl-phy.c ieee802154: add support for creation/removal of logic interfaces 2009-11-06 14:32:24 +03:00
nl_policy.c ieee802154: add LIST_PHY command support 2009-11-06 14:31:22 +03:00
raw.c net: sk_drops consolidation 2009-10-14 20:40:11 -07:00
wpan-class.c ieee802154: make wpan-phy class registration to subsys_initcall 2009-11-13 00:07:15 +03:00