diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2016-11-12 17:03:07 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2016-11-22 22:50:46 +0100 |
commit | 39385cb5f3274735b03ed1f8e7ff517b02a0beed (patch) | |
tree | 3c6ec16600b7ec16f3b019bbbdae493de90eefb0 /include | |
parent | c9b8af1330198ae241cd545e1f040019010d44d9 (diff) | |
download | linux-39385cb5f3274735b03ed1f8e7ff517b02a0beed.tar.bz2 |
Bluetooth: Fix using the correct source address type
The hci_get_route() API is used to look up local HCI devices, however
so far it has been incapable of dealing with anything else than the
public address of HCI devices. This completely breaks with LE-only HCI
devices that do not come with a public address, but use a static
random address instead.
This patch exteds the hci_get_route() API with a src_type parameter
that's used for comparing with the right address of each HCI device.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/bluetooth/hci_core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index f00bf667ec33..554671c81f4a 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h @@ -1018,7 +1018,7 @@ static inline void hci_set_drvdata(struct hci_dev *hdev, void *data) } struct hci_dev *hci_dev_get(int index); -struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src); +struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src, u8 src_type); struct hci_dev *hci_alloc_dev(void); void hci_free_dev(struct hci_dev *hdev); |