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

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

drivers: net: hamradio: 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 8d81fe75
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -623,9 +623,7 @@ static int sixpack_open(struct tty_struct *tty)

	netif_start_queue(dev);

	init_timer(&sp->tx_t);
	sp->tx_t.function = sp_xmit_on_air;
	sp->tx_t.data = (unsigned long) sp;
	setup_timer(&sp->tx_t, sp_xmit_on_air, (unsigned long)sp);

	init_timer(&sp->resync_t);