aboutsummaryrefslogtreecommitdiffstats
path: root/net/nfc
diff options
context:
space:
mode:
authorAllen Pais <allen.lkml@gmail.com>2017-09-25 03:30:03 -0400
committerDavid S. Miller <davem@davemloft.net>2017-09-25 16:19:20 -0400
commitb1e07c5486f0df26caf93234bd7db5545a37aba8 (patch)
treea911be2de7ecc316d4d366c9bed8192849fa9d5e /net/nfc
parent2d04cfcfa2e86cac751979b584e5420dd470903b (diff)
net: nfc: hci: 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 'net/nfc')
-rw-r--r--net/nfc/hci/core.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/net/nfc/hci/core.c b/net/nfc/hci/core.c
index b740fef0acc5..a8a6e7814e09 100644
--- a/net/nfc/hci/core.c
+++ b/net/nfc/hci/core.c
@@ -1004,9 +1004,8 @@ int nfc_hci_register_device(struct nfc_hci_dev *hdev)
1004 1004
1005 INIT_WORK(&hdev->msg_tx_work, nfc_hci_msg_tx_work); 1005 INIT_WORK(&hdev->msg_tx_work, nfc_hci_msg_tx_work);
1006 1006
1007 init_timer(&hdev->cmd_timer); 1007 setup_timer(&hdev->cmd_timer, nfc_hci_cmd_timeout,
1008 hdev->cmd_timer.data = (unsigned long)hdev; 1008 (unsigned long)hdev);
1009 hdev->cmd_timer.function = nfc_hci_cmd_timeout;
1010 1009
1011 skb_queue_head_init(&hdev->rx_hcp_frags); 1010 skb_queue_head_init(&hdev->rx_hcp_frags);
1012 1011