summaryrefslogtreecommitdiff
path: root/net/bluetooth
diff options
context:
space:
mode:
authorMursalin Akon <makon@nvidia.com>2012-12-07 13:33:26 -0800
committerDan Willemsen <dwillemsen@nvidia.com>2013-09-14 12:46:19 -0700
commit25e6f1291512be09cc1fdbbbec360b498028d8eb (patch)
treeb87ec2481255307064059023395d95a755509520 /net/bluetooth
parent6c6fb86fbecd976cb4b655944204597e9a994d23 (diff)
tty: serial: tegra: Export symbols for bluesleep
The bluesleep modules uses couple of symbols which are not exported. As a result, bluesleep cannot be built as module. Bug 1193147 Change-Id: I47bc31cb6ff525e346df29264698031fd94032c7 Signed-off-by: Mursalin Akon <makon@nvidia.com> Reviewed-on: http://git-master/r/169513 Reviewed-by: Automatic_Commit_Validation_User Reviewed-by: Allen Martin <amartin@nvidia.com>
Diffstat (limited to 'net/bluetooth')
-rw-r--r--net/bluetooth/hci_core.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index ddb320f6865d..1b6aed2a9f41 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -57,11 +57,13 @@ int hci_register_notifier(struct notifier_block *nb)
{
return atomic_notifier_chain_register(&hci_notifier, nb);
}
+EXPORT_SYMBOL(hci_register_notifier);
int hci_unregister_notifier(struct notifier_block *nb)
{
return atomic_notifier_chain_unregister(&hci_notifier, nb);
}
+EXPORT_SYMBOL(hci_unregister_notifier);
static void hci_notify(struct hci_dev *hdev, int event)
{