From: Octavian Purdila Date: Wed, 25 Nov 2009 23:14:13 +0000 (-0800) Subject: net: use net_eq to compare nets X-Git-Tag: v2.6.33-rc1~388^2~213 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=09ad9bc752519cc167d0a573e1acf69b5c707c67;p=pandora-kernel.git 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 Signed-off-by: David S. Miller --- Reading git-diff-tree failed