diff options
author | Mursalin Akon <makon@nvidia.com> | 2012-12-07 13:33:26 -0800 |
---|---|---|
committer | Simone Willett <swillett@nvidia.com> | 2012-12-20 18:02:03 -0800 |
commit | 807f055a4bb39db8a61645d132171ea16055ff4a (patch) | |
tree | e987355083b40daafb7c7212a8e51d1b4c17f9cb /net | |
parent | 6e67e5a0d1842af28189ae2aa19b2515f4c875b9 (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
(cherry picked from commit b6b26f200cb4123b3542d49c59691f78ffa75a95)
Reviewed-on: http://git-master/r/172852
Reviewed-by: Automatic_Commit_Validation_User
Reviewed-by: Allen Martin <amartin@nvidia.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/bluetooth/hci_core.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index a07800fdb16c..748cdf553328 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -74,11 +74,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) { |