mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-03-06 17:45:40 +07:00
drivers: net: packetengines: 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
ac803d1c5f
commit
f1ce56ce5d
@ -632,10 +632,8 @@ static int yellowfin_open(struct net_device *dev)
|
||||
}
|
||||
|
||||
/* Set the timer to check for link beat. */
|
||||
init_timer(&yp->timer);
|
||||
setup_timer(&yp->timer, yellowfin_timer, (unsigned long)dev);
|
||||
yp->timer.expires = jiffies + 3*HZ;
|
||||
yp->timer.data = (unsigned long)dev;
|
||||
yp->timer.function = yellowfin_timer; /* timer handler */
|
||||
add_timer(&yp->timer);
|
||||
out:
|
||||
return rc;
|
||||
|
Loading…
Reference in New Issue
Block a user