mirror of https://gitee.com/openkylin/linux.git
drivers: net: winbond-840: 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
ba98e9e2eb
commit
3e436a25fc
|
@ -655,10 +655,8 @@ static int netdev_open(struct net_device *dev)
|
|||
netdev_dbg(dev, "Done netdev_open()\n");
|
||||
|
||||
/* Set the timer to check for link beat. */
|
||||
init_timer(&np->timer);
|
||||
setup_timer(&np->timer, netdev_timer, (unsigned long)dev);
|
||||
np->timer.expires = jiffies + 1*HZ;
|
||||
np->timer.data = (unsigned long)dev;
|
||||
np->timer.function = netdev_timer; /* timer handler */
|
||||
add_timer(&np->timer);
|
||||
return 0;
|
||||
out_err:
|
||||
|
|
Loading…
Reference in New Issue