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/20191111.065916~68 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=50fc3bb7d8e72f68be2aea4b84e06e4ea397890f;p=platform%2Fkernel%2Flinux-rpi.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 --- diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index 3551e7b..70233a1 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c @@ -1526,9 +1526,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 */