mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-08 14:02:37 -04:00
drivers: net: cxgb: 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:
committed by
David S. Miller
parent
570ba3e82b
commit
66f0689030
@@ -2075,9 +2075,8 @@ struct sge *t1_sge_create(struct adapter *adapter, struct sge_params *p)
|
||||
goto nomem_port;
|
||||
}
|
||||
|
||||
init_timer(&sge->tx_reclaim_timer);
|
||||
sge->tx_reclaim_timer.data = (unsigned long)sge;
|
||||
sge->tx_reclaim_timer.function = sge_tx_reclaim_cb;
|
||||
setup_timer(&sge->tx_reclaim_timer, sge_tx_reclaim_cb,
|
||||
(unsigned long)sge);
|
||||
|
||||
if (is_T2(sge->adapter)) {
|
||||
init_timer(&sge->espibug_timer);
|
||||
|
||||
Reference in New Issue
Block a user