提交 7d8fb3a7 编写于 作者: A Allen Pais 提交者: David S. Miller

drivers: net: i40evf: use setup_timer() helper.

Use setup_timer function instead of initializing timer with the
    function and data fields.
Signed-off-by: NAllen Pais <allen.lkml@gmail.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 9be5813a
...@@ -2686,9 +2686,8 @@ static void i40evf_init_task(struct work_struct *work) ...@@ -2686,9 +2686,8 @@ static void i40evf_init_task(struct work_struct *work)
ether_addr_copy(netdev->perm_addr, adapter->hw.mac.addr); ether_addr_copy(netdev->perm_addr, adapter->hw.mac.addr);
} }
init_timer(&adapter->watchdog_timer); setup_timer(&adapter->watchdog_timer, &i40evf_watchdog_timer,
adapter->watchdog_timer.function = &i40evf_watchdog_timer; (unsigned long)adapter);
adapter->watchdog_timer.data = (unsigned long)adapter;
mod_timer(&adapter->watchdog_timer, jiffies + 1); mod_timer(&adapter->watchdog_timer, jiffies + 1);
adapter->tx_desc_count = I40EVF_DEFAULT_TXD; adapter->tx_desc_count = I40EVF_DEFAULT_TXD;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册