Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ba7400ed authored by Allen Pais's avatar Allen Pais Committed by David S. Miller
Browse files

drivers: net: appletalk: use setup_timer() helper.



Use setup_timer function instead of initializing timer with the
    function and data fields.

Signed-off-by: default avatarAllen Pais <allen.lkml@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7890d534
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -1165,9 +1165,7 @@ struct net_device * __init ltpc_probe(void)
		dev->irq = 0;
		/* polled mode -- 20 times per second */
		/* this is really, really slow... should it poll more often? */
		init_timer(&ltpc_timer);
		ltpc_timer.function=ltpc_poll;
		ltpc_timer.data = (unsigned long) dev;
		setup_timer(&ltpc_timer, ltpc_poll, (unsigned long)dev);

		ltpc_timer.expires = jiffies + HZ/20;
		add_timer(&ltpc_timer);