aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/hci_core.c
diff options
context:
space:
mode:
authorJonas Holmberg <jonashg@axis.com>2017-02-23 15:17:02 +0100
committerMarcel Holtmann <marcel@holtmann.org>2017-04-12 22:02:38 +0200
commitb48c3b59a32932d80e3032e2e97eb2751208390a (patch)
treec9cc1dbf4230978adee4a2cd5d0aad0793e7fe59 /net/bluetooth/hci_core.c
parentBluetooth: fix assignments on error variable err (diff)
downloadlinux-dev-b48c3b59a32932d80e3032e2e97eb2751208390a.tar.xz
linux-dev-b48c3b59a32932d80e3032e2e97eb2751208390a.zip
Bluetooth: Change initial min and max interval
Use the initial connection interval recommended in Bluetooth Specification v4.2 (30ms - 50ms). Signed-off-by: Jonas Holmberg <jonashg@axis.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/hci_core.c')
-rw-r--r--net/bluetooth/hci_core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index 3ac89e9ace71..05686776a5fb 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -2950,8 +2950,8 @@ struct hci_dev *hci_alloc_dev(void)
hdev->le_adv_max_interval = 0x0800;
hdev->le_scan_interval = 0x0060;
hdev->le_scan_window = 0x0030;
- hdev->le_conn_min_interval = 0x0028;
- hdev->le_conn_max_interval = 0x0038;
+ hdev->le_conn_min_interval = 0x0018;
+ hdev->le_conn_max_interval = 0x0028;
hdev->le_conn_latency = 0x0000;
hdev->le_supv_timeout = 0x002a;
hdev->le_def_tx_len = 0x001b;