drivers/net: Remove address use from assignments of function pointers
"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>
This commit is contained in:
committed by
David S. Miller
parent
31018e068e
commit
c061b18df0
@@ -1255,7 +1255,7 @@ static int __devinit dec_lance_probe(struct device *bdev, const int type)
|
||||
*/
|
||||
init_timer(&lp->multicast_timer);
|
||||
lp->multicast_timer.data = (unsigned long) dev;
|
||||
lp->multicast_timer.function = &lance_set_multicast_retry;
|
||||
lp->multicast_timer.function = lance_set_multicast_retry;
|
||||
|
||||
ret = register_netdev(dev);
|
||||
if (ret) {
|
||||
|
Reference in New Issue
Block a user