diff options
Diffstat (limited to 'include/net/bluetooth')
-rw-r--r-- | include/net/bluetooth/hci_core.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index d84855fe7336..263e42b68e8d 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 | ||
413 | int hci_register_sysfs(struct hci_dev *hdev); | 417 | int hci_register_sysfs(struct hci_dev *hdev); |
414 | void hci_unregister_sysfs(struct hci_dev *hdev); | 418 | void hci_unregister_sysfs(struct hci_dev *hdev); |
419 | void hci_conn_add_sysfs(struct hci_conn *conn); | ||
420 | void 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 | ||