From e92d6173825ddc3e2b922fe611d173bbb7e3ede2 Mon Sep 17 00:00:00 2001 From: Sudha Bheemanna Date: Thu, 8 Sep 2016 16:01:23 +0530 Subject: [PATCH] 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 Signed-off-by: Amit Purwar Signed-off-by: Wootak Jung --- net/bluetooth/hci_sync.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/net/bluetooth/hci_sync.c b/net/bluetooth/hci_sync.c index eb2473a..f3c3d8d 100644 --- a/net/bluetooth/hci_sync.c +++ b/net/bluetooth/hci_sync.c @@ -3108,6 +3108,12 @@ int hci_write_fast_connectable_sync(struct hci_dev *hdev, bool enable) memset(&cp, 0, sizeof(cp)); +#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; @@ -3128,6 +3134,7 @@ int hci_write_fast_connectable_sync(struct hci_dev *hdev, bool enable) if (err) return err; } +#endif if (hdev->page_scan_type != type) err = __hci_cmd_sync_status(hdev, -- 2.7.4