aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2014-02-22 00:35:30 -0500
committerJohan Hedberg <johan.hedberg@intel.com>2014-02-22 02:23:19 -0500
commit1b60ef210e90cc116b9c976ff9fb8b656b3ebb76 (patch)
tree5be69ff54354fa25cd70f4b0b918be678ccd94e9 /net
parent668b7b19820b0801c425d31cc27fd6f499050e5c (diff)
Bluetooth: Fix issue with missing management event opcode
The event opcode for New Identity Resolving Key event is missing from supported event list. Just add it there. Signed-off-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net')
-rw-r--r--net/bluetooth/mgmt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c
index 12fa6399c796..bc329d911706 100644
--- a/net/bluetooth/mgmt.c
+++ b/net/bluetooth/mgmt.c
@@ -106,6 +106,7 @@ static const u16 mgmt_events[] = {
106 MGMT_EV_DEVICE_UNBLOCKED, 106 MGMT_EV_DEVICE_UNBLOCKED,
107 MGMT_EV_DEVICE_UNPAIRED, 107 MGMT_EV_DEVICE_UNPAIRED,
108 MGMT_EV_PASSKEY_NOTIFY, 108 MGMT_EV_PASSKEY_NOTIFY,
109 MGMT_EV_NEW_IRK,
109}; 110};
110 111
111#define CACHE_TIMEOUT msecs_to_jiffies(2 * 1000) 112#define CACHE_TIMEOUT msecs_to_jiffies(2 * 1000)