diff options
-rw-r--r-- | net/bluetooth/hci_event.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index db58e72316b9..0437200d92f4 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c | |||
@@ -2611,7 +2611,7 @@ static void hci_link_key_request_evt(struct hci_dev *hdev, struct sk_buff *skb) | |||
2611 | 2611 | ||
2612 | BT_DBG("%s", hdev->name); | 2612 | BT_DBG("%s", hdev->name); |
2613 | 2613 | ||
2614 | if (!test_bit(HCI_LINK_KEYS, &hdev->dev_flags)) | 2614 | if (!test_bit(HCI_MGMT, &hdev->dev_flags)) |
2615 | return; | 2615 | return; |
2616 | 2616 | ||
2617 | hci_dev_lock(hdev); | 2617 | hci_dev_lock(hdev); |
@@ -2687,7 +2687,7 @@ static void hci_link_key_notify_evt(struct hci_dev *hdev, struct sk_buff *skb) | |||
2687 | hci_conn_drop(conn); | 2687 | hci_conn_drop(conn); |
2688 | } | 2688 | } |
2689 | 2689 | ||
2690 | if (test_bit(HCI_LINK_KEYS, &hdev->dev_flags)) | 2690 | if (test_bit(HCI_MGMT, &hdev->dev_flags)) |
2691 | hci_add_link_key(hdev, conn, 1, &ev->bdaddr, ev->link_key, | 2691 | hci_add_link_key(hdev, conn, 1, &ev->bdaddr, ev->link_key, |
2692 | ev->key_type, pin_len); | 2692 | ev->key_type, pin_len); |
2693 | 2693 | ||