diff options
author | Allen Pais <allen.lkml@gmail.com> | 2017-09-21 22:35:11 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-09-21 11:44:43 -0700 |
commit | 13e96b93ff5f1093592419e1f84962d4a266bd3e (patch) | |
tree | e5c45532e62c2964d6f859d3e8cea99b0cd56254 /drivers/net/can/sja1000/peak_pcmcia.c | |
parent | 7c214194de36217c06b0dc4ed64d9cf251b261df (diff) | |
download | blackbird-op-linux-13e96b93ff5f1093592419e1f84962d4a266bd3e.tar.gz blackbird-op-linux-13e96b93ff5f1093592419e1f84962d4a266bd3e.zip |
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: Allen Pais <allen.lkml@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/can/sja1000/peak_pcmcia.c')
-rw-r--r-- | drivers/net/can/sja1000/peak_pcmcia.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/can/sja1000/peak_pcmcia.c b/drivers/net/can/sja1000/peak_pcmcia.c index dd56133cc461..4b8758e10bd4 100644 --- a/drivers/net/can/sja1000/peak_pcmcia.c +++ b/drivers/net/can/sja1000/peak_pcmcia.c @@ -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); |