This function exports some functions which are needed by the 6LoWPAN BTLE module. Signed-off-by: Alexander Aring <aar@xxxxxxxxxxxxxx> --- net/bluetooth/hci_core.c | 4 ++++ net/bluetooth/l2cap_core.c | 1 + 2 files changed, 5 insertions(+) diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index a75e9e7..4935b94 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -48,7 +48,9 @@ static void hci_tx_work(struct work_struct *work); /* HCI device list */ LIST_HEAD(hci_dev_list); +EXPORT_SYMBOL(hci_dev_list); DEFINE_RWLOCK(hci_dev_list_lock); +EXPORT_SYMBOL(hci_dev_list_lock); /* HCI callback list */ LIST_HEAD(hci_cb_list); @@ -955,6 +957,7 @@ struct hci_dev *hci_dev_get(int index) read_unlock(&hci_dev_list_lock); return hdev; } +EXPORT_SYMBOL(hci_dev_get); /* ---- Inquiry support ---- */ @@ -2941,6 +2944,7 @@ void hci_copy_identity_address(struct hci_dev *hdev, bdaddr_t *bdaddr, *bdaddr_type = ADDR_LE_DEV_PUBLIC; } } +EXPORT_SYMBOL(hci_copy_identity_address); /* Alloc HCI device */ struct hci_dev *hci_alloc_dev(void) diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c index 2ab8814..1bf534d 100644 --- a/net/bluetooth/l2cap_core.c +++ b/net/bluetooth/l2cap_core.c @@ -484,6 +484,7 @@ void l2cap_chan_hold(struct l2cap_chan *c) kref_get(&c->kref); } +EXPORT_SYMBOL(l2cap_chan_hold); void l2cap_chan_put(struct l2cap_chan *c) { -- 2.9.0 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html