Use setup_timer function instead of initializing timer with the
    function and data fields.

Signed-off-by: Allen Pais <allen.l...@gmail.com>
---
 drivers/net/ethernet/stmicro/stmmac/stmmac_main.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c 
b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
index 1763e48..f41661a 100644
--- a/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
+++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_main.c
@@ -2217,10 +2217,8 @@ static void stmmac_init_tx_coalesce(struct stmmac_priv 
*priv)
 {
        priv->tx_coal_frames = STMMAC_TX_FRAMES;
        priv->tx_coal_timer = STMMAC_COAL_TX_TIMER;
-       init_timer(&priv->txtimer);
+       setup_timer(&priv->txtimer, stmmac_tx_timer, (unsigned long)priv);
        priv->txtimer.expires = STMMAC_COAL_TIMER(priv->tx_coal_timer);
-       priv->txtimer.data = (unsigned long)priv;
-       priv->txtimer.function = stmmac_tx_timer;
        add_timer(&priv->txtimer);
 }
 
-- 
2.7.4

Reply via email to