diff options
| author | John W. Linville <linville@tuxdriver.com> | 2013-04-29 15:31:57 -0400 |
|---|---|---|
| committer | John W. Linville <linville@tuxdriver.com> | 2013-04-29 15:31:57 -0400 |
| commit | 17a2911f3395d66694fcbd2e8970015904d9b034 (patch) | |
| tree | c93e40197d4614b5183f86f0335c5c7abcee31aa /include/net | |
| parent | 94dace10142790ddeb0a3a7b8b33d9540d30c79f (diff) | |
| parent | a8a48e60a468084ef6ec23c78e8903c9e0ba7a4c (diff) | |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next into for-davem
Diffstat (limited to 'include/net')
| -rw-r--r-- | include/net/bluetooth/hci_core.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index 80d718a9b31f..35a57cd1704c 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h | |||
| @@ -1081,17 +1081,19 @@ struct hci_request { | |||
| 1081 | 1081 | ||
| 1082 | void hci_req_init(struct hci_request *req, struct hci_dev *hdev); | 1082 | void hci_req_init(struct hci_request *req, struct hci_dev *hdev); |
| 1083 | int hci_req_run(struct hci_request *req, hci_req_complete_t complete); | 1083 | int hci_req_run(struct hci_request *req, hci_req_complete_t complete); |
| 1084 | void hci_req_add(struct hci_request *req, u16 opcode, u32 plen, void *param); | 1084 | void hci_req_add(struct hci_request *req, u16 opcode, u32 plen, |
| 1085 | void hci_req_add_ev(struct hci_request *req, u16 opcode, u32 plen, void *param, | 1085 | const void *param); |
| 1086 | u8 event); | 1086 | void hci_req_add_ev(struct hci_request *req, u16 opcode, u32 plen, |
| 1087 | const void *param, u8 event); | ||
| 1087 | void hci_req_cmd_complete(struct hci_dev *hdev, u16 opcode, u8 status); | 1088 | void hci_req_cmd_complete(struct hci_dev *hdev, u16 opcode, u8 status); |
| 1088 | 1089 | ||
| 1089 | struct sk_buff *__hci_cmd_sync(struct hci_dev *hdev, u16 opcode, u32 plen, | 1090 | struct sk_buff *__hci_cmd_sync(struct hci_dev *hdev, u16 opcode, u32 plen, |
| 1090 | void *param, u32 timeout); | 1091 | const void *param, u32 timeout); |
| 1091 | struct sk_buff *__hci_cmd_sync_ev(struct hci_dev *hdev, u16 opcode, u32 plen, | 1092 | struct sk_buff *__hci_cmd_sync_ev(struct hci_dev *hdev, u16 opcode, u32 plen, |
| 1092 | void *param, u8 event, u32 timeout); | 1093 | const void *param, u8 event, u32 timeout); |
| 1093 | 1094 | ||
| 1094 | int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen, void *param); | 1095 | int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen, |
| 1096 | const void *param); | ||
| 1095 | void hci_send_acl(struct hci_chan *chan, struct sk_buff *skb, __u16 flags); | 1097 | void hci_send_acl(struct hci_chan *chan, struct sk_buff *skb, __u16 flags); |
| 1096 | void hci_send_sco(struct hci_conn *conn, struct sk_buff *skb); | 1098 | void hci_send_sco(struct hci_conn *conn, struct sk_buff *skb); |
| 1097 | 1099 | ||
