diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2012-11-01 11:27:26 (GMT) |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2012-11-01 22:27:11 (GMT) |
commit | 0c0afedf55ff409be9db0b0aeeaa1c6fe0f3cd3c (patch) | |
tree | d631548f1699815689ed4490d980a2b1eca41e4f /include/net | |
parent | fffadc08ebf1f4c61bb8f9be0f1d8c3c053d815f (diff) | |
download | linux-fsl-qoriq-0c0afedf55ff409be9db0b0aeeaa1c6fe0f3cd3c.tar.xz |
Bluetooth: Fix parameter order of hci_get_route
The actual parameter order of hci_get_route is (dst, src) and not (src,
dst). All current callers use the right order but the header file shows
the parameters in the wrong order.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'include/net')
-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 b3490c6..ce6dbeb 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h @@ -685,7 +685,7 @@ static inline uint8_t __hci_num_ctrl(void) } struct hci_dev *hci_dev_get(int index); -struct hci_dev *hci_get_route(bdaddr_t *src, bdaddr_t *dst); +struct hci_dev *hci_get_route(bdaddr_t *dst, bdaddr_t *src); struct hci_dev *hci_alloc_dev(void); void hci_free_dev(struct hci_dev *hdev); |