diff options
author | Allen Pais <allen.lkml@gmail.com> | 2017-09-25 13:00:04 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-09-25 13:19:20 -0700 |
commit | 22d387e13ac357279ddac55694883fd3e30a5639 (patch) | |
tree | 8bbec7b4df7a36258d40c0e296b34322611a68d5 | |
parent | b1e07c5486f0df26caf93234bd7db5545a37aba8 (diff) | |
download | linux-22d387e13ac357279ddac55694883fd3e30a5639.tar.gz linux-22d387e13ac357279ddac55694883fd3e30a5639.tar.bz2 linux-22d387e13ac357279ddac55694883fd3e30a5639.zip |
net: nfc: hci: llc_shdlc: 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>
-rw-r--r-- | net/nfc/hci/llc_shdlc.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/net/nfc/hci/llc_shdlc.c b/net/nfc/hci/llc_shdlc.c index 17e59a009ce6..58df37eae1e8 100644 --- a/net/nfc/hci/llc_shdlc.c +++ b/net/nfc/hci/llc_shdlc.c @@ -763,17 +763,14 @@ static void *llc_shdlc_init(struct nfc_hci_dev *hdev, xmit_to_drv_t xmit_to_drv, mutex_init(&shdlc->state_mutex); shdlc->state = SHDLC_DISCONNECTED; - init_timer(&shdlc->connect_timer); - shdlc->connect_timer.data = (unsigned long)shdlc; - shdlc->connect_timer.function = llc_shdlc_connect_timeout; + setup_timer(&shdlc->connect_timer, llc_shdlc_connect_timeout, + (unsigned long)shdlc); - init_timer(&shdlc->t1_timer); - shdlc->t1_timer.data = (unsigned long)shdlc; - shdlc->t1_timer.function = llc_shdlc_t1_timeout; + setup_timer(&shdlc->t1_timer, llc_shdlc_t1_timeout, + (unsigned long)shdlc); - init_timer(&shdlc->t2_timer); - shdlc->t2_timer.data = (unsigned long)shdlc; - shdlc->t2_timer.function = llc_shdlc_t2_timeout; + setup_timer(&shdlc->t2_timer, llc_shdlc_t2_timeout, + (unsigned long)shdlc); shdlc->w = SHDLC_MAX_WINDOW; shdlc->srej_support = SHDLC_SREJ_SUPPORT; |