]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blobdiff - include/net/bluetooth/hci_core.h
Bluetooth: Add convenience function for fetching IRKs
[mirror_ubuntu-artful-kernel.git] / include / net / bluetooth / hci_core.h
index ac468de11cb727c59c5217437db7322df9104db5..4461c00512289cfca25f0174cff46529f6766659 100644 (file)
@@ -1083,6 +1083,15 @@ static inline bool hci_bdaddr_is_rpa(bdaddr_t *bdaddr, u8 addr_type)
        return false;
 }
 
+static inline struct smp_irk *hci_get_irk(struct hci_dev *hdev,
+                                         bdaddr_t *bdaddr, u8 addr_type)
+{
+       if (!hci_bdaddr_is_rpa(bdaddr, addr_type))
+               return NULL;
+
+       return hci_find_irk_by_rpa(hdev, bdaddr);
+}
+
 int hci_register_cb(struct hci_cb *hcb);
 int hci_unregister_cb(struct hci_cb *hcb);