aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorAndrei Emeltchenko <andrei.emeltchenko@intel.com>2011-12-01 07:33:28 -0500
committerGustavo F. Padovan <padovan@profusion.mobi>2011-12-02 18:28:17 -0500
commit5a13b09531420d230616bd524b68a5b0c23cd487 (patch)
treeb95db310878d5543a9bcb329b08e3b672b14da4e /net
parentd095c1ebd43a43c1d78055ff111f464b04f8624e (diff)
Bluetooth: trivial: correct check for LMP version
Make sure that code match exactly what comment says about pre 1.2 bluetooth version. Since this is HCI detail lmp_ver changed to hci_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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
index a3e83aa92ecd..35cb56ed3b0b 100644
--- a/net/bluetooth/hci_event.c
+++ b/net/bluetooth/hci_event.c
@@ -500,7 +500,7 @@ static void hci_setup_event_mask(struct hci_dev *hdev)
500 500
501 /* CSR 1.1 dongles does not accept any bitfield so don't try to set 501 /* CSR 1.1 dongles does not accept any bitfield so don't try to set
502 * any event mask for pre 1.2 devices */ 502 * any event mask for pre 1.2 devices */
503 if (hdev->lmp_ver <= BLUETOOTH_VER_1_1) 503 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
504 return; 504 return;
505 505
506 events[4] |= 0x01; /* Flow Specification Complete */ 506 events[4] |= 0x01; /* Flow Specification Complete */