mirror of https://gitee.com/openkylin/linux.git
drivers: net: atmel: 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
f7c11175bd
commit
55d3cef4ee
|
@ -1579,11 +1579,10 @@ struct net_device *init_atmel_card(unsigned short irq, unsigned long port,
|
|||
priv->default_beacon_period = priv->beacon_period = 100;
|
||||
priv->listen_interval = 1;
|
||||
|
||||
init_timer(&priv->management_timer);
|
||||
setup_timer(&priv->management_timer, atmel_management_timer,
|
||||
(unsigned long)dev);
|
||||
spin_lock_init(&priv->irqlock);
|
||||
spin_lock_init(&priv->timerlock);
|
||||
priv->management_timer.function = atmel_management_timer;
|
||||
priv->management_timer.data = (unsigned long) dev;
|
||||
|
||||
dev->netdev_ops = &atmel_netdev_ops;
|
||||
dev->wireless_handlers = &atmel_handler_def;
|
||||
|
|
Loading…
Reference in New Issue