OSDN Git Service

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

index dd56133..4b8758e 100644 (file)
@@ -692,9 +692,7 @@ static int pcan_probe(struct pcmcia_device *pdev)
        }
 
        /* init the timer which controls the leds */
-       init_timer(&card->led_timer);
-       card->led_timer.function = pcan_led_timer;
-       card->led_timer.data = (unsigned long)card;
+       setup_timer(&card->led_timer, pcan_led_timer, (unsigned long)card);
 
        /* request the given irq */
        err = request_irq(pdev->irq, &pcan_isr, IRQF_SHARED, PCC_NAME, card);