summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorSudha Bheemanna <b.sudha@samsung.com>2016-09-08 16:01:23 +0530
committerSeung-Woo Kim <sw0312.kim@samsung.com>2016-12-14 13:53:19 +0900
commitfbadd0b772950e4b843d7c172a89dc5cdc48a50d (patch)
tree3414b3fdd56960b9c18d2855ccaeb8a4c473946c /net
parent4efa40641bb52bfeac9ba6d41b7ec9e494dc3ef1 (diff)
Bluetooth: Modify fast connectable type.
This patch modifies the fast connectable function to just set the type. Change-Id: I0cce96f85d823f9798ae7f147c4e33ce7b18e0e3 Signed-off-by: Sudha Bheemanna <b.sudha@samsung.com>
Diffstat (limited to 'net')
-rw-r--r--net/bluetooth/mgmt.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
index 6377782f17ec..427db2372c6a 100644
--- a/net/bluetooth/mgmt.c
+++ b/net/bluetooth/mgmt.c
@@ -1952,7 +1952,9 @@ failed:
static void write_fast_connectable(struct hci_request *req, bool enable)
{
struct hci_dev *hdev = req->hdev;
+#ifndef TIZEN_BT
struct hci_cp_write_page_scan_activity acp;
+#endif
u8 type;
if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
@@ -1961,6 +1963,12 @@ static void write_fast_connectable(struct hci_request *req, bool enable)
if (hdev->hci_ver < BLUETOOTH_VER_1_2)
return;
+#ifdef TIZEN_BT
+ if (enable)
+ type = PAGE_SCAN_TYPE_INTERLACED;
+ else
+ type = PAGE_SCAN_TYPE_STANDARD; /* default */
+#else
if (enable) {
type = PAGE_SCAN_TYPE_INTERLACED;
@@ -1979,6 +1987,7 @@ static void write_fast_connectable(struct hci_request *req, bool enable)
__cpu_to_le16(hdev->page_scan_window) != acp.window)
hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
sizeof(acp), &acp);
+#endif
if (hdev->page_scan_type != type)
hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);