aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/hamradio
diff options
context:
space:
mode:
authorAllen Pais <allen.lkml@gmail.com>2017-09-21 22:35:16 +0530
committerDavid S. Miller <davem@davemloft.net>2017-09-21 11:44:43 -0700
commit7e47fc264e2837d971720ccf1f8b35648c2626ea (patch)
tree80a5f6779d7fba2b4f144ad0878ea7d56adc1f30 /drivers/net/hamradio
parentdrivers: net: hdlc_ppp: use setup_timer() helper. (diff)
downloadlinux-dev-7e47fc264e2837d971720ccf1f8b35648c2626ea.tar.xz
linux-dev-7e47fc264e2837d971720ccf1f8b35648c2626ea.zip
drivers: net: hamradio: 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/hamradio')
-rw-r--r--drivers/net/hamradio/6pack.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/hamradio/6pack.c b/drivers/net/hamradio/6pack.c
index 021a8ec411ab..97fe8dfb602d 100644
--- a/drivers/net/hamradio/6pack.c
+++ b/drivers/net/hamradio/6pack.c
@@ -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);