]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Bluetooth: hci_h5: Use setup_timer Kernel API instead of init_timer
authorPrasanna Karthik <pkarthik@intrinsyc.com>
Tue, 18 Oct 2016 17:30:10 +0000 (17:30 +0000)
committerMarcel Holtmann <marcel@holtmann.org>
Sun, 27 Nov 2016 06:41:05 +0000 (07:41 +0100)
Replace init_timer function with setup_timer reported by coccinelle

Signed-off-by: Prasanna Karthik <pkarthik@intrinsyc.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
drivers/bluetooth/hci_h5.c

index 0879d64b1caf58afb6e5d494c07d9ab7e7cdf983..90d0456b67446bcc624fab4b1542c4eaf21531b1 100644 (file)
@@ -204,9 +204,7 @@ static int h5_open(struct hci_uart *hu)
 
        h5_reset_rx(h5);
 
-       init_timer(&h5->timer);
-       h5->timer.function = h5_timed_event;
-       h5->timer.data = (unsigned long)hu;
+       setup_timer(&h5->timer, h5_timed_event, (unsigned long)hu);
 
        h5->tx_win = H5_TX_WIN_MAX;