提交 13e96b93 编写于 作者: A Allen Pais 提交者: David S. Miller

drivers: net: can: sja1000: use setup_timer() helper.

Use setup_timer function instead of initializing timer with the
    function and data fields.
Signed-off-by: NAllen Pais <allen.lkml@gmail.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 7c214194
...@@ -692,9 +692,7 @@ static int pcan_probe(struct pcmcia_device *pdev) ...@@ -692,9 +692,7 @@ static int pcan_probe(struct pcmcia_device *pdev)
} }
/* init the timer which controls the leds */ /* init the timer which controls the leds */
init_timer(&card->led_timer); setup_timer(&card->led_timer, pcan_led_timer, (unsigned long)card);
card->led_timer.function = pcan_led_timer;
card->led_timer.data = (unsigned long)card;
/* request the given irq */ /* request the given irq */
err = request_irq(pdev->irq, &pcan_isr, IRQF_SHARED, PCC_NAME, card); err = request_irq(pdev->irq, &pcan_isr, IRQF_SHARED, PCC_NAME, card);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册