mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 08:33:17 +02:00
drivers: net: amd: 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
4a9c07ed71
commit
af25c31d4b
|
|
@ -1459,9 +1459,8 @@ static int sparc_lance_probe_one(struct platform_device *op,
|
|||
* can occur from interrupts (ex. IPv6). So we
|
||||
* use a timer to try again later when necessary. -DaveM
|
||||
*/
|
||||
init_timer(&lp->multicast_timer);
|
||||
lp->multicast_timer.data = (unsigned long) dev;
|
||||
lp->multicast_timer.function = lance_set_multicast_retry;
|
||||
setup_timer(&lp->multicast_timer, lance_set_multicast_retry,
|
||||
(unsigned long)dev);
|
||||
|
||||
if (register_netdev(dev)) {
|
||||
printk(KERN_ERR "SunLance: Cannot register device.\n");
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user