drivers/net: Remove address use from assignments of function pointers
authorJoe Perches <joe@perches.com>
Mon, 23 Aug 2010 18:20:03 +0000 (18:20 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 25 Aug 2010 22:35:43 +0000 (15:35 -0700)
"foo = &function" is more commonly written "foo = function"

Done with coccinelle script:

// <smpl>
@r@
identifier f;
@@

f(...) { ... }

@@
identifier r.f;
@@

- &f
+ f
// </smpl>

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 <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

No differences found