mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
drivers: net: uli526x: 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:
committed by
David S. Miller
parent
7d8fb3a774
commit
99e3aa1ea4
@@ -491,10 +491,8 @@ static int uli526x_open(struct net_device *dev)
|
||||
netif_wake_queue(dev);
|
||||
|
||||
/* set and active a timer process */
|
||||
init_timer(&db->timer);
|
||||
setup_timer(&db->timer, uli526x_timer, (unsigned long)dev);
|
||||
db->timer.expires = ULI526X_TIMER_WUT + HZ * 2;
|
||||
db->timer.data = (unsigned long)dev;
|
||||
db->timer.function = uli526x_timer;
|
||||
add_timer(&db->timer);
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user