aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/hci_core.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/bluetooth/hci_core.h')
-rw-r--r--include/net/bluetooth/hci_core.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
index d84855fe733..263e42b68e8 100644
--- a/include/net/bluetooth/hci_core.h
+++ b/include/net/bluetooth/hci_core.h
@@ -165,6 +165,10 @@ struct hci_conn {
165 struct timer_list disc_timer; 165 struct timer_list disc_timer;
166 struct timer_list idle_timer; 166 struct timer_list idle_timer;
167 167
168 struct work_struct work;
169
170 struct device dev;
171
168 struct hci_dev *hdev; 172 struct hci_dev *hdev;
169 void *l2cap_data; 173 void *l2cap_data;
170 void *sco_data; 174 void *sco_data;
@@ -412,6 +416,8 @@ static inline int hci_recv_frame(struct sk_buff *skb)
412 416
413int hci_register_sysfs(struct hci_dev *hdev); 417int hci_register_sysfs(struct hci_dev *hdev);
414void hci_unregister_sysfs(struct hci_dev *hdev); 418void hci_unregister_sysfs(struct hci_dev *hdev);
419void hci_conn_add_sysfs(struct hci_conn *conn);
420void hci_conn_del_sysfs(struct hci_conn *conn);
415 421
416#define SET_HCIDEV_DEV(hdev, pdev) ((hdev)->parent = (pdev)) 422#define SET_HCIDEV_DEV(hdev, pdev) ((hdev)->parent = (pdev))
417 423