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

drivers: net: sdla: 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 4896ad68
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -1617,10 +1617,8 @@ static void setup_sdla(struct net_device *dev)
	flp->deassoc		= sdla_deassoc;
	flp->dlci_conf		= sdla_dlci_conf;

	init_timer(&flp->timer);
	setup_timer(&flp->timer, sdla_poll, (unsigned long)dev);
	flp->timer.expires	= 1;
	flp->timer.data		= (unsigned long) dev;
	flp->timer.function	= sdla_poll;
}

static struct net_device *sdla;