summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSeung-Woo Kim <sw0312.kim@samsung.com>2014-05-15 12:37:20 +0900
committerChanho Park <cometzero@review.tizen.org>2014-08-12 19:13:39 -0700
commit58b98ff91f92814e177860a3d235a321b6311d39 (patch)
tree8e96242fee43b7fb87c67c8f6a0282b12e15684c /include
parentd50fb3791e02cb09d4c0f2ca13aa1ede18b62e58 (diff)
downloadlinux-3.10-58b98ff91f92814e177860a3d235a321b6311d39.tar.gz
linux-3.10-58b98ff91f92814e177860a3d235a321b6311d39.tar.bz2
linux-3.10-58b98ff91f92814e177860a3d235a321b6311d39.zip
Bluetooth: add hci event notification
WORKAROUND: Temporary workaround for bluetooth enable. For specific hci events, operations are needed. So this patch adds event notification and its notifier registration. Change-Id: I6f8fe0b3b90c12d7f4fe35823d25b9fbdcd98d06 Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
Diffstat (limited to 'include')
-rw-r--r--include/net/bluetooth/hci.h1
-rw-r--r--include/net/bluetooth/hci_core.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h
index 0ef00066dae..67c824b29f3 100644
--- a/include/net/bluetooth/hci.h
+++ b/include/net/bluetooth/hci.h
@@ -42,6 +42,7 @@
#define HCI_DEV_DOWN 4
#define HCI_DEV_SUSPEND 5
#define HCI_DEV_RESUME 6
+#define HCI_DEV_WRITE 7
/* HCI notify events */
#define HCI_NOTIFY_CONN_ADD 1
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
index 7cb6d360d14..1c8ae61dcaf 100644
--- a/include/net/bluetooth/hci_core.h
+++ b/include/net/bluetooth/hci_core.h
@@ -1068,6 +1068,8 @@ static inline u16 eir_append_data(u8 *eir, u16 eir_len, u8 type, u8 *data,
int hci_register_cb(struct hci_cb *hcb);
int hci_unregister_cb(struct hci_cb *hcb);
+int hci_register_notifier(struct notifier_block *nb);
+int hci_unregister_notifier(struct notifier_block *nb);
struct hci_request {
struct hci_dev *hdev;