drivers: net: sis900: use setup_timer() helper.
authorAllen Pais <allen.lkml@gmail.com>
Thu, 21 Sep 2017 17:05:01 +0000 (22:35 +0530)
committerDavid S. Miller <davem@davemloft.net>
Thu, 21 Sep 2017 18:44:42 +0000 (11:44 -0700)
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>
drivers/net/ethernet/sis/sis900.c

index 40bd883..cb61247 100644 (file)
@@ -1065,10 +1065,8 @@ sis900_open(struct net_device *net_dev)
 
        /* Set the timer to switch to check for link beat and perhaps switch
           to an alternate media type. */
-       init_timer(&sis_priv->timer);
+       setup_timer(&sis_priv->timer, sis900_timer, (unsigned long)net_dev);
        sis_priv->timer.expires = jiffies + HZ;
-       sis_priv->timer.data = (unsigned long)net_dev;
-       sis_priv->timer.function = sis900_timer;
        add_timer(&sis_priv->timer);
 
        return 0;