drivers: net: hippi: use setup_timer() helper.
Use setup_timer function instead of initializing timer with the function and data fields. Signed-off-by: Allen Pais <allen.lkml@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
55d3cef4ee
commit
0625d739cc
|
@ -1229,10 +1229,8 @@ static int rr_open(struct net_device *dev)
|
||||||
|
|
||||||
/* Set the timer to switch to check for link beat and perhaps switch
|
/* Set the timer to switch to check for link beat and perhaps switch
|
||||||
to an alternate media type. */
|
to an alternate media type. */
|
||||||
init_timer(&rrpriv->timer);
|
setup_timer(&rrpriv->timer, rr_timer, (unsigned long)dev);
|
||||||
rrpriv->timer.expires = RUN_AT(5*HZ); /* 5 sec. watchdog */
|
rrpriv->timer.expires = RUN_AT(5*HZ); /* 5 sec. watchdog */
|
||||||
rrpriv->timer.data = (unsigned long)dev;
|
|
||||||
rrpriv->timer.function = rr_timer; /* timer handler */
|
|
||||||
add_timer(&rrpriv->timer);
|
add_timer(&rrpriv->timer);
|
||||||
|
|
||||||
netif_start_queue(dev);
|
netif_start_queue(dev);
|
||||||
|
|
Loading…
Reference in New Issue