diff options
| author | Sathish Narsimman <[email protected]> | 2020-04-03 21:43:58 +0200 | 
|---|---|---|
| committer | Johan Hedberg <[email protected]> | 2020-04-05 14:52:38 +0300 | 
| commit | 1f8330ea1692c9c490b1e566e31d96d8cef99dd8 (patch) | |
| tree | f9c13fcc8a901fa32718771ce123a30f213129ec /include/net/bluetooth/hci.h | |
| parent | 1e5479be46a70389e1059818a2e9358858eaa5fc (diff) | |
Bluetooth: add support to notify using SCO air mode
notifying using HCI_NOTIFY_CONN_ADD for SCO connection is generic in
case of mSBC audio. To differntiate SCO air mode introducing
HCI_NOTIFY_ENABLE_SCO_CVSD and HCI_NOTIFY_ENABLE_SCO_TRANSP.
Signed-off-by: Sathish Narsimman <[email protected]>
Signed-off-by: Marcel Holtmann <[email protected]>
Signed-off-by: Johan Hedberg <[email protected]>
Diffstat (limited to 'include/net/bluetooth/hci.h')
| -rw-r--r-- | include/net/bluetooth/hci.h | 3 | 
1 files changed, 3 insertions, 0 deletions
| diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index 5f60e135aeb6..9ff2f7a9e131 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -53,6 +53,9 @@  #define HCI_NOTIFY_CONN_ADD		1  #define HCI_NOTIFY_CONN_DEL		2  #define HCI_NOTIFY_VOICE_SETTING	3 +#define HCI_NOTIFY_ENABLE_SCO_CVSD	4 +#define HCI_NOTIFY_ENABLE_SCO_TRANSP	5 +#define HCI_NOTIFY_DISABLE_SCO		6  /* HCI bus types */  #define HCI_VIRTUAL	0 |