aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2014-07-09 03:49:05 -0400
committerJohan Hedberg <johan.hedberg@intel.com>2014-07-09 04:19:15 -0400
commitcd7ca0ec5e046c570497b387332560eb42908cc4 (patch)
tree817cecc180b94d73f0775688d6eb88b9398c9a55
parentfa2f1394fe9c1a217213f02df77812701de6362f (diff)
Bluetooth: Fix enabling Authenticated Payload Timeout Expired event
The Authenticated Payload Timeout Expired event is valid for controllers with BR/EDR Secure Connections support, but also for LE only controllers supporting LE Ping feature. When either of them is available enable this event. Previous it was not enabled when the controller was only supporting LE operation. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
-rw-r--r--include/net/bluetooth/hci.h1
-rw-r--r--net/bluetooth/hci_core.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h
index 6ed1f7288f13..a01236e2df13 100644
--- a/include/net/bluetooth/hci.h
+++ b/include/net/bluetooth/hci.h
@@ -357,6 +357,7 @@ enum {
357 357
358/* LE features */ 358/* LE features */
359#define HCI_LE_CONN_PARAM_REQ_PROC 0x02 359#define HCI_LE_CONN_PARAM_REQ_PROC 0x02
360#define HCI_LE_PING 0x10
360 361
361/* Connection modes */ 362/* Connection modes */
362#define HCI_CM_ACTIVE 0x0000 363#define HCI_CM_ACTIVE 0x0000
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index 8ffaca0290f8..421faf5fa1f5 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -1569,7 +1569,7 @@ static void hci_set_event_mask_page_2(struct hci_request *req)
1569 } 1569 }
1570 1570
1571 /* Enable Authenticated Payload Timeout Expired event if supported */ 1571 /* Enable Authenticated Payload Timeout Expired event if supported */
1572 if (lmp_ping_capable(hdev)) 1572 if (lmp_ping_capable(hdev) || hdev->le_features[0] & HCI_LE_PING)
1573 events[2] |= 0x80; 1573 events[2] |= 0x80;
1574 1574
1575 hci_req_add(req, HCI_OP_SET_EVENT_MASK_PAGE_2, sizeof(events), events); 1575 hci_req_add(req, HCI_OP_SET_EVENT_MASK_PAGE_2, sizeof(events), events);