summaryrefslogtreecommitdiffstats
path: root/net/bluetooth/hci_core.c
diff options
context:
space:
mode:
authorAndre Guedes2012-04-25 02:02:53 +0200
committerGustavo Padovan2012-05-09 06:40:44 +0200
commit31f7956c6648fbae9c9550e91d1c348d28276309 (patch)
tree1493deb456bfb82bf9ff3ad2380bdd2dcf60baae /net/bluetooth/hci_core.c
parentBluetooth: Rename mgmt_to_le to bdaddr_to_le (diff)
downloadkernel-qcow2-linux-31f7956c6648fbae9c9550e91d1c348d28276309.tar.gz
kernel-qcow2-linux-31f7956c6648fbae9c9550e91d1c348d28276309.tar.xz
kernel-qcow2-linux-31f7956c6648fbae9c9550e91d1c348d28276309.zip
Bluetooth: Move bdaddr_to_le to hci_core
This patch moves the helper function bdaddr_to_le to hci_core, so it can be used in mgmt.c and hci_conn.c. Signed-off-by: Andre Guedes <andre.guedes@openbossa.org> Acked-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.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index aa45ea496f87..7bbd5c5767b9 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -2946,3 +2946,15 @@ int hci_cancel_inquiry(struct hci_dev *hdev)
return hci_send_cmd(hdev, HCI_OP_INQUIRY_CANCEL, 0, NULL);
}
+
+u8 bdaddr_to_le(u8 bdaddr_type)
+{
+ switch (bdaddr_type) {
+ case BDADDR_LE_PUBLIC:
+ return ADDR_LE_DEV_PUBLIC;
+
+ default:
+ /* Fallback to LE Random address type */
+ return ADDR_LE_DEV_RANDOM;
+ }
+}