summaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/hci_core.h
diff options
context:
space:
mode:
authorMarcel Holtmann2014-06-30 12:34:39 +0200
committerMarcel Holtmann2014-07-03 17:42:51 +0200
commitbf5b3c8be07905c242bb7f751dcb890b94c22d93 (patch)
treed51b8f325a1b0b0043ea309cd748bd9f546f2377 /include/net/bluetooth/hci_core.h
parentBluetooth: Expose default supervision timeout setting via debugfs (diff)
downloadkernel-qcow2-linux-bf5b3c8be07905c242bb7f751dcb890b94c22d93.tar.gz
kernel-qcow2-linux-bf5b3c8be07905c242bb7f751dcb890b94c22d93.tar.xz
kernel-qcow2-linux-bf5b3c8be07905c242bb7f751dcb890b94c22d93.zip
Bluetooth: Provide function to create and set connection parameters
In some cases it is useful to not overwrite connection parametes and instead just create default ones if they don't exist. This function does exactly that. hci_conn_params_add will allow to create new default connection parameters. hci_conn_params_set will set the values and also create new parameters if they don't exist. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'include/net/bluetooth/hci_core.h')
-rw-r--r--include/net/bluetooth/hci_core.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
index ed842c7e5cf1..c0d2506e2019 100644
--- a/include/net/bluetooth/hci_core.h
+++ b/include/net/bluetooth/hci_core.h
@@ -852,7 +852,8 @@ int hci_white_list_del(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type);
struct hci_conn_params *hci_conn_params_lookup(struct hci_dev *hdev,
bdaddr_t *addr, u8 addr_type);
-int hci_conn_params_add(struct hci_dev *hdev, bdaddr_t *addr, u8 addr_type,
+int hci_conn_params_add(struct hci_dev *hdev, bdaddr_t *addr, u8 addr_type);
+int hci_conn_params_set(struct hci_dev *hdev, bdaddr_t *addr, u8 addr_type,
u8 auto_connect, u16 conn_min_interval,
u16 conn_max_interval);
void hci_conn_params_del(struct hci_dev *hdev, bdaddr_t *addr, u8 addr_type);