diff options
author | Andre Guedes <andre.guedes@openbossa.org> | 2011-06-30 19:20:55 -0300 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-07-06 19:10:41 -0300 |
commit | eead27da60df80a112d1ac3ea482226e9794c26b (patch) | |
tree | 56c4ad84024a4fa628cf4975924ec7a1311a05ec /net/bluetooth | |
parent | e6100a2541987b84af37e4c4247d989644a3aa69 (diff) | |
download | linux-3.10-eead27da60df80a112d1ac3ea482226e9794c26b.tar.gz linux-3.10-eead27da60df80a112d1ac3ea482226e9794c26b.tar.bz2 linux-3.10-eead27da60df80a112d1ac3ea482226e9794c26b.zip |
Bluetooth: Add lmp_host_le_capable() macro
Since we have the extended LMP features properly implemented, we
should check the LMP_HOST_LE bit to know if the host supports LE.
Signed-off-by: Andre Guedes <andre.guedes@openbossa.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/hci_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index cd59b849d05..886cc44e171 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -542,7 +542,7 @@ int hci_dev_open(__u16 dev) ret = __hci_request(hdev, hci_init_req, 0, msecs_to_jiffies(HCI_INIT_TIMEOUT)); - if (lmp_le_capable(hdev)) + if (lmp_host_le_capable(hdev)) ret = __hci_request(hdev, hci_le_init_req, 0, msecs_to_jiffies(HCI_INIT_TIMEOUT)); |