mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-24 05:04:00 +08:00
drivers: net: sundance: 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
82a8c67451
commit
88e8aa1725
@ -913,10 +913,8 @@ static int netdev_open(struct net_device *dev)
|
||||
ioread16(ioaddr + MACCtrl1), ioread16(ioaddr + MACCtrl0));
|
||||
|
||||
/* 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 + 3*HZ;
|
||||
np->timer.data = (unsigned long)dev;
|
||||
np->timer.function = netdev_timer; /* timer handler */
|
||||
add_timer(&np->timer);
|
||||
|
||||
/* Enable interrupts by setting the interrupt mask. */
|
||||
|
Loading…
Reference in New Issue
Block a user