drivers: net: enic: 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:
Родитель
3e436a25fc
Коммит
7afd516ff7
|
@ -2846,9 +2846,8 @@ static int enic_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||||
/* Setup notification timer, HW reset task, and wq locks
|
/* Setup notification timer, HW reset task, and wq locks
|
||||||
*/
|
*/
|
||||||
|
|
||||||
init_timer(&enic->notify_timer);
|
setup_timer(&enic->notify_timer, enic_notify_timer,
|
||||||
enic->notify_timer.function = enic_notify_timer;
|
(unsigned long)enic);
|
||||||
enic->notify_timer.data = (unsigned long)enic;
|
|
||||||
|
|
||||||
enic_set_rx_coal_setting(enic);
|
enic_set_rx_coal_setting(enic);
|
||||||
INIT_WORK(&enic->reset, enic_reset);
|
INIT_WORK(&enic->reset, enic_reset);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче