mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
forcedeth: replace init_timer_deferrable with setup_deferrable_timer
Replace init_timer_deferrable with setup_deferrable_timer to simplify the source code. Signed-off-by: Zhu Yanjun <yanjun.zhu@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
cc147a0dc3
commit
d24d39d906
@ -5629,9 +5629,8 @@ static int nv_probe(struct pci_dev *pci_dev, const struct pci_device_id *id)
|
||||
|
||||
setup_timer(&np->oom_kick, nv_do_rx_refill, (unsigned long)dev);
|
||||
setup_timer(&np->nic_poll, nv_do_nic_poll, (unsigned long)dev);
|
||||
init_timer_deferrable(&np->stats_poll);
|
||||
np->stats_poll.data = (unsigned long) dev;
|
||||
np->stats_poll.function = nv_do_stats_poll; /* timer handler */
|
||||
setup_deferrable_timer(&np->stats_poll, nv_do_stats_poll,
|
||||
(unsigned long)dev);
|
||||
|
||||
err = pci_enable_device(pci_dev);
|
||||
if (err)
|
||||
|
Loading…
Reference in New Issue
Block a user