diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2015-10-21 18:03:10 +0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-10-21 18:58:23 +0200 |
commit | 17bc08f0d1b17d6d5e4967c1b430af627c5f2041 (patch) | |
tree | 5c5fb50ea65d5eef6a542bde47848fe3659a1a55 /net/bluetooth/hci_core.c | |
parent | 1ede9868f6577e2bd7eda1a05cd6812aff5c6c8a (diff) | |
download | linux-17bc08f0d1b17d6d5e4967c1b430af627c5f2041.tar.gz linux-17bc08f0d1b17d6d5e4967c1b430af627c5f2041.tar.bz2 linux-17bc08f0d1b17d6d5e4967c1b430af627c5f2041.zip |
Bluetooth: Remove unnecessary hci_explicit_connect_lookup function
There's only one user of this helper which can be replaces with a call
to hci_pend_le_action_lookup() and a check for params->explicit_connect.
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.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index 964fba4c96bf..086ed9389da1 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -2941,23 +2941,6 @@ struct hci_conn_params *hci_pend_le_action_lookup(struct list_head *list, } /* This function requires the caller holds hdev->lock */ -struct hci_conn_params *hci_explicit_connect_lookup(struct hci_dev *hdev, - bdaddr_t *addr, - u8 addr_type) -{ - struct hci_conn_params *param; - - list_for_each_entry(param, &hdev->pend_le_conns, action) { - if (bacmp(¶m->addr, addr) == 0 && - param->addr_type == addr_type && - param->explicit_connect) - return param; - } - - return NULL; -} - -/* This function requires the caller holds hdev->lock */ struct hci_conn_params *hci_conn_params_add(struct hci_dev *hdev, bdaddr_t *addr, u8 addr_type) { |