diff options
author | Antti Julku <antti.julku@nokia.com> | 2011-06-15 12:01:14 +0300 |
---|---|---|
committer | Jaikumar Ganesh <jaikumar@google.com> | 2011-07-11 11:59:23 -0700 |
commit | 9d90e2e88fc70b4723d39d97e90efc1f16d0d522 (patch) | |
tree | 3bd11ca58a676f7160e7db21e9a1d6e812b0c555 /include | |
parent | 397d9aeced79c37913ae90485a4544c04e7fb518 (diff) | |
download | kernel_samsung_aries-9d90e2e88fc70b4723d39d97e90efc1f16d0d522.zip kernel_samsung_aries-9d90e2e88fc70b4723d39d97e90efc1f16d0d522.tar.gz kernel_samsung_aries-9d90e2e88fc70b4723d39d97e90efc1f16d0d522.tar.bz2 |
Bluetooth: Move blacklisting functions to hci_core
Move blacklisting functions to hci_core.c, so that they can
be used by both management interface and hci socket interface.
Signed-off-by: Antti Julku <antti.julku@nokia.com>
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/bluetooth/hci_core.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index 9f98124..9631dab 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h @@ -531,6 +531,8 @@ int hci_inquiry(void __user *arg); struct bdaddr_list *hci_blacklist_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr); int hci_blacklist_clear(struct hci_dev *hdev); +int hci_blacklist_add(struct hci_dev *hdev, bdaddr_t *bdaddr); +int hci_blacklist_del(struct hci_dev *hdev, bdaddr_t *bdaddr); int hci_uuids_clear(struct hci_dev *hdev); |