diff options
author | Loic Poulain <loic.poulain@linaro.org> | 2018-04-26 13:13:26 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2018-05-18 06:37:52 +0200 |
commit | d6ee6ad774a986d4faaa794a0980e7c50ed359c6 (patch) | |
tree | af9db18d67dbbc4c8d7188ea26d641d70189e9c8 /include/net/bluetooth | |
parent | d36dfb3e9b990b45bb812fd144b19737649a69ba (diff) | |
download | talos-op-linux-d6ee6ad774a986d4faaa794a0980e7c50ed359c6.tar.gz talos-op-linux-d6ee6ad774a986d4faaa794a0980e7c50ed359c6.zip |
Bluetooth: Add __hci_cmd_send function
This function allows to send a HCI command without expecting any
controller event/response in return. This is allowed for vendor-
specific commands only.
Signed-off-by: Loic Poulain <loic.poulain@linaro.org>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/net/bluetooth')
-rw-r--r-- | include/net/bluetooth/hci_core.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h index b619a190ff12..893bbbb5d2fa 100644 --- a/include/net/bluetooth/hci_core.h +++ b/include/net/bluetooth/hci_core.h @@ -1393,6 +1393,8 @@ struct sk_buff *__hci_cmd_sync(struct hci_dev *hdev, u16 opcode, u32 plen, const void *param, u32 timeout); struct sk_buff *__hci_cmd_sync_ev(struct hci_dev *hdev, u16 opcode, u32 plen, const void *param, u8 event, u32 timeout); +int __hci_cmd_send(struct hci_dev *hdev, u16 opcode, u32 plen, + const void *param); int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen, const void *param); |