From: Joe Perches Date: Mon, 23 Aug 2010 18:20:03 +0000 (+0000) Subject: drivers/net: Remove address use from assignments of function pointers X-Git-Tag: v2.6.37-rc1~147^2~674 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c061b18df0f1fe3f50fe451dbbdc9ede3c19701a;p=pandora-kernel.git drivers/net: Remove address use from assignments of function pointers "foo = &function" is more commonly written "foo = function" Done with coccinelle script: // @r@ identifier f; @@ f(...) { ... } @@ identifier r.f; @@ - &f + f // drivers/net/tehuti.c used a function and struct with the same name, the function was renamed. Compile tested x86 only. Signed-off-by: Joe Perches Signed-off-by: David S. Miller --- Reading git-diff-tree failed