summaryrefslogtreecommitdiffstats
path: root/net/bluetooth/hci_core.c
diff options
context:
space:
mode:
authorJohan Hedberg2014-07-04 11:37:20 +0200
committerMarcel Holtmann2014-07-04 11:58:09 +0200
commit42ce26de67e13c50885e7856ff91aaeedf07a81b (patch)
tree2819f8901eea02a14cdcfc11874c5b4112683a20 /net/bluetooth/hci_core.c
parentBluetooth: Simplify use of hci_pend_le_conns_clear() (diff)
downloadkernel-qcow2-linux-42ce26de67e13c50885e7856ff91aaeedf07a81b.tar.gz
kernel-qcow2-linux-42ce26de67e13c50885e7856ff91aaeedf07a81b.tar.xz
kernel-qcow2-linux-42ce26de67e13c50885e7856ff91aaeedf07a81b.zip
Bluetooth: Don't bother doing anything if auto_connect doesn't change
When hci_conn_params_set() is called if the new auto_connect value is the same as the old one we don't need to take any action. Simply return success from the function in this case. Signed-off-by: Johan Hedberg <johan.hedberg@intel.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/hci_core.c')
-rw-r--r--net/bluetooth/hci_core.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index dd8aa5f86810..0601fcbd21eb 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -3525,6 +3525,9 @@ int hci_conn_params_set(struct hci_dev *hdev, bdaddr_t *addr, u8 addr_type,
if (!params)
return -EIO;
+ if (params->auto_connect == auto_connect)
+ return 0;
+
if (params->auto_connect == HCI_AUTO_CONN_REPORT &&
auto_connect != HCI_AUTO_CONN_REPORT)
list_del_init(&params->action);