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

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

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: default avatarAllen Pais <allen.lkml@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7c214194
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -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);