From: Sudha Bheemanna Date: Thu, 8 Sep 2016 11:31:39 +0000 (+0530) Subject: Bluetooth: Cancel the Sniff timer X-Git-Tag: accepted/tizen/unified/riscv/20230725.071352~53 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d52c774ea9d9b9be61cbc82230e1f556e0af2d3e;p=platform%2Fkernel%2Flinux-starfive.git Bluetooth: Cancel the Sniff timer This patch adds code to cancel the sniff timer. Change-Id: I756d3b08acf6462044d1fb204064fe12ce1238c1 Signed-off-by: Sudha Bheemanna Signed-off-by: Amit Purwar Signed-off-by: Wootak Jung --- diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index b2eeac1..d9383a3 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c @@ -2516,9 +2516,18 @@ void hci_conn_enter_active_mode(struct hci_conn *conn, __u8 force_active) } timer: +#ifdef TIZEN_BT + if (hdev->idle_timeout > 0) { + /* Sniff timer cancel */ + cancel_delayed_work(&conn->idle_work); + queue_delayed_work(hdev->workqueue, &conn->idle_work, + msecs_to_jiffies(hdev->idle_timeout)); + } +#else if (hdev->idle_timeout > 0) queue_delayed_work(hdev->workqueue, &conn->idle_work, msecs_to_jiffies(hdev->idle_timeout)); +#endif } /* Drop all connection on the device */