diff options
author | Sudha Bheemanna <b.sudha@samsung.com> | 2016-09-08 14:54:54 +0530 |
---|---|---|
committer | Amit Purwar <amit.purwar@samsung.com> | 2019-06-28 09:52:14 +0530 |
commit | 7a4bf890784df8359e73bcca7ab1f18015872f1c (patch) | |
tree | c5bd35d93621ccbc6455afad04f7616df4f6553f | |
parent | abf6605db08943fb1917682b61d522d288db4fcc (diff) | |
download | linux-rpi3-7a4bf890784df8359e73bcca7ab1f18015872f1c.tar.gz linux-rpi3-7a4bf890784df8359e73bcca7ab1f18015872f1c.tar.bz2 linux-rpi3-7a4bf890784df8359e73bcca7ab1f18015872f1c.zip |
Bluetooth: Enable inquiry and page scan
This patch enables the inquiry and page scan after ACL
disconnection with one device and if there are no other
devices connected.
Change-Id: Ifb28be7d23f237d35112b2e0739ed55169baacf7
Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com>
Signed-off-by: Amit Purwar <amit.purwar@samsung.com>
-rw-r--r-- | net/bluetooth/hci_event.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index 5fec8e67e326..d46439920dd0 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -2815,6 +2815,22 @@ static void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb) if (type == LE_LINK) hci_req_reenable_advertising(hdev); +#ifdef TIZEN_BT + if (type == ACL_LINK && !hci_conn_num(hdev, ACL_LINK)) { + int iscan; + int pscan; + + iscan = test_bit(HCI_ISCAN, &hdev->flags); + pscan = test_bit(HCI_PSCAN, &hdev->flags); + if (!iscan && !pscan) { + u8 scan_enable = SCAN_PAGE; + + hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, + sizeof(scan_enable), &scan_enable); + } + } +#endif + unlock: hci_dev_unlock(hdev); } |