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

Commit 99e3aa1e authored by Allen Pais's avatar Allen Pais Committed by David S. Miller
Browse files

drivers: net: uli526x: 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 7d8fb3a7
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -491,10 +491,8 @@ static int uli526x_open(struct net_device *dev)
	netif_wake_queue(dev);

	/* set and active a timer process */
	init_timer(&db->timer);
	setup_timer(&db->timer, uli526x_timer, (unsigned long)dev);
	db->timer.expires = ULI526X_TIMER_WUT + HZ * 2;
	db->timer.data = (unsigned long)dev;
	db->timer.function = uli526x_timer;
	add_timer(&db->timer);

	return 0;