diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2014-06-30 12:34:36 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-07-03 17:42:51 +0200 |
commit | 04fb7d9066dd9173ef0d4ccea8fe3bb59bd94605 (patch) | |
tree | 9d55d6113ff0a9bccfdbe2b781167a878bd98d0e /net/bluetooth/hci_conn.c | |
parent | 8afef092a192cb946393bb11cc95b59739c1e57b (diff) | |
download | blackbird-op-linux-04fb7d9066dd9173ef0d4ccea8fe3bb59bd94605.tar.gz blackbird-op-linux-04fb7d9066dd9173ef0d4ccea8fe3bb59bd94605.zip |
Bluetooth: Provide defaults for LE connection latency and timeout
Store the connection latency and supervision timeout default values
with all the other controller defaults. And when needed use them
for new connections.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth/hci_conn.c')
-rw-r--r-- | net/bluetooth/hci_conn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index e7ee7267f846..d00aaf976efc 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c @@ -773,8 +773,8 @@ struct hci_conn *hci_connect_le(struct hci_dev *hdev, bdaddr_t *dst, } else { conn->le_conn_min_interval = hdev->le_conn_min_interval; conn->le_conn_max_interval = hdev->le_conn_max_interval; - conn->le_conn_latency = 0x0000; - conn->le_supv_timeout = 0x002a; + conn->le_conn_latency = hdev->le_conn_latency; + conn->le_supv_timeout = hdev->le_supv_timeout; } /* If controller is scanning, we stop it since some controllers are |