diff options
author | Andrei Emeltchenko <andrei.emeltchenko@intel.com> | 2011-11-23 11:23:34 +0200 |
---|---|---|
committer | Gustavo F. Padovan <padovan@profusion.mobi> | 2011-12-03 08:20:00 +0900 |
commit | 33cb722c22f28964a501a56cc76397834c221c7a (patch) | |
tree | ee8cf8e2955b4e610efa89e3d2c1d43b83720fa3 /net | |
parent | 54a8a79c55ce283c94ce4c67a98d28c21830405a (diff) | |
download | linux-stable-33cb722c22f28964a501a56cc76397834c221c7a.tar.gz linux-stable-33cb722c22f28964a501a56cc76397834c221c7a.tar.bz2 linux-stable-33cb722c22f28964a501a56cc76397834c221c7a.zip |
Bluetooth: Correct version check in hci_setup
Check for hci_ver instead of lmp_ver
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'net')
-rw-r--r-- | net/bluetooth/hci_event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index d7d96b6b1f0d..643a41b76e2e 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -545,7 +545,7 @@ static void hci_setup(struct hci_dev *hdev) { hci_setup_event_mask(hdev); - if (hdev->lmp_ver > 1) + if (hdev->hci_ver > 1) hci_send_cmd(hdev, HCI_OP_READ_LOCAL_COMMANDS, 0, NULL); if (hdev->features[6] & LMP_SIMPLE_PAIR) { |