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

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

drivers: net: dscc: 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 ba7400ed
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -1127,10 +1127,8 @@ static int dscc4_open(struct net_device *dev)
done:
	netif_start_queue(dev);

        init_timer(&dpriv->timer);
	setup_timer(&dpriv->timer, dscc4_timer, (unsigned long)dev);
        dpriv->timer.expires = jiffies + 10*HZ;
        dpriv->timer.data = (unsigned long)dev;
	dpriv->timer.function = dscc4_timer;
        add_timer(&dpriv->timer);
	netif_carrier_on(dev);