diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2013-04-02 06:34:31 -0400 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2013-04-04 12:16:04 -0400 |
commit | b6ddb638235d90ed67af9af40e63880fd66a1939 (patch) | |
tree | acb90fd3ac15d2e879a2f1df5a5992b9c3d40afd /include/net/bluetooth/hci_core.h | |
parent | 1687dfc3dcecd7f22f60461b562b9ae3171eb93e (diff) |
Bluetooth: Track received events in hdev
This patch adds tracking of received HCI events to the hci_dev struct.
This is necessary so that a subsequent patch can implement a function
for sending a single command synchronously and returning the resulting
command complete parameters in the function return value.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/net/bluetooth/hci_core.h')
-rw-r--r-- | include/net/bluetooth/hci_core.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index 0e7ee892d7ab..89eda2ef2380 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h | |||
@@ -244,6 +244,7 @@ struct hci_dev { | |||
244 | struct sk_buff_head raw_q; | 244 | struct sk_buff_head raw_q; |
245 | struct sk_buff_head cmd_q; | 245 | struct sk_buff_head cmd_q; |
246 | 246 | ||
247 | struct sk_buff *recv_evt; | ||
247 | struct sk_buff *sent_cmd; | 248 | struct sk_buff *sent_cmd; |
248 | struct sk_buff *reassembly[NUM_REASSEMBLY]; | 249 | struct sk_buff *reassembly[NUM_REASSEMBLY]; |
249 | 250 | ||