mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00: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
997decfb6a
commit
9be5813a29
1 changed files with 1 additions and 3 deletions
|
@ -979,10 +979,8 @@ static int hamachi_open(struct net_device *dev)
|
|||
dev->name, readw(ioaddr + RxStatus), readw(ioaddr + TxStatus));
|
||||
}
|
||||
/* Set the timer to check for link beat. */
|
||||
init_timer(&hmp->timer);
|
||||
setup_timer(&hmp->timer, hamachi_timer, (unsigned long)dev);
|
||||
hmp->timer.expires = RUN_AT((24*HZ)/10); /* 2.4 sec. */
|
||||
hmp->timer.data = (unsigned long)dev;
|
||||
hmp->timer.function = hamachi_timer; /* timer handler */
|
||||
add_timer(&hmp->timer);
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue