aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2014-07-01 06:11:06 -0400
committerMarcel Holtmann <marcel@holtmann.org>2014-07-03 11:42:53 -0400
commitd06b50ce14119acb04773a9808ccff5d1767b7e4 (patch)
tree1f7efcb52dfabe5a22064bfe637a8749549fd8ee /net
parent8c87aae1fa2ffa89e5e840b8e928fa0eb5c13157 (diff)
Bluetooth: Remove connection interval parameters from hci_conn_params_set
The connection interval parameter of hci_conn_params_set are always used with the controller defaults. So just let hci_conn_params_add set the controller default and not bother resetting them to controller defaults every time the hci_conn_params_set is called. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net')
-rw-r--r--net/bluetooth/hci_core.c10
-rw-r--r--net/bluetooth/mgmt.c5
2 files changed, 5 insertions, 10 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index 9ae945d8ad7e..237963d5473c 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -3508,8 +3508,7 @@ struct hci_conn_params *hci_conn_params_add(struct hci_dev *hdev,
3508 3508
3509/* This function requires the caller holds hdev->lock */ 3509/* This function requires the caller holds hdev->lock */
3510int hci_conn_params_set(struct hci_dev *hdev, bdaddr_t *addr, u8 addr_type, 3510int hci_conn_params_set(struct hci_dev *hdev, bdaddr_t *addr, u8 addr_type,
3511 u8 auto_connect, u16 conn_min_interval, 3511 u8 auto_connect)
3512 u16 conn_max_interval)
3513{ 3512{
3514 struct hci_conn_params *params; 3513 struct hci_conn_params *params;
3515 3514
@@ -3517,8 +3516,6 @@ int hci_conn_params_set(struct hci_dev *hdev, bdaddr_t *addr, u8 addr_type,
3517 if (!params) 3516 if (!params)
3518 return -EIO; 3517 return -EIO;
3519 3518
3520 params->conn_min_interval = conn_min_interval;
3521 params->conn_max_interval = conn_max_interval;
3522 params->auto_connect = auto_connect; 3519 params->auto_connect = auto_connect;
3523 3520
3524 switch (auto_connect) { 3521 switch (auto_connect) {
@@ -3532,9 +3529,8 @@ int hci_conn_params_set(struct hci_dev *hdev, bdaddr_t *addr, u8 addr_type,
3532 break; 3529 break;
3533 } 3530 }
3534 3531
3535 BT_DBG("addr %pMR (type %u) auto_connect %u conn_min_interval 0x%.4x " 3532 BT_DBG("addr %pMR (type %u) auto_connect %u", addr, addr_type,
3536 "conn_max_interval 0x%.4x", addr, addr_type, auto_connect, 3533 auto_connect);
3537 conn_min_interval, conn_max_interval);
3538 3534
3539 return 0; 3535 return 0;
3540} 3536}
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
index 6baba309f9e2..c6e9b551242b 100644
--- a/net/bluetooth/mgmt.c
+++ b/net/bluetooth/mgmt.c
@@ -5028,9 +5028,8 @@ static int add_device(struct sock *sk, struct hci_dev *hdev,
5028 /* If the connection parameters don't exist for this device, 5028 /* If the connection parameters don't exist for this device,
5029 * they will be created and configured with defaults. 5029 * they will be created and configured with defaults.
5030 */ 5030 */
5031 if (hci_conn_params_set(hdev, &cp->addr.bdaddr, addr_type, auto_conn, 5031 if (hci_conn_params_set(hdev, &cp->addr.bdaddr, addr_type,
5032 hdev->le_conn_min_interval, 5032 auto_conn) < 0) {
5033 hdev->le_conn_max_interval) < 0) {
5034 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE, 5033 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
5035 MGMT_STATUS_FAILED, 5034 MGMT_STATUS_FAILED,
5036 &cp->addr, sizeof(cp->addr)); 5035 &cp->addr, sizeof(cp->addr));