Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7c214194 authored by Allen Pais's avatar Allen Pais Committed by David S. Miller
Browse files

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



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

Signed-off-by: default avatarAllen Pais <allen.lkml@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent cac40a45
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -1650,9 +1650,8 @@ static int bfin_mac_probe(struct platform_device *pdev)
	ndev->netdev_ops = &bfin_mac_netdev_ops;
	ndev->ethtool_ops = &bfin_mac_ethtool_ops;

	init_timer(&lp->tx_reclaim_timer);
	lp->tx_reclaim_timer.data = (unsigned long)lp;
	lp->tx_reclaim_timer.function = tx_reclaim_skb_timeout;
	setup_timer(&lp->tx_reclaim_timer, tx_reclaim_skb_timeout,
		    (unsigned long)lp);

	lp->flags = 0;
	netif_napi_add(ndev, &lp->napi, bfin_mac_poll, CONFIG_BFIN_RX_DESC_NUM);