diff options
author | Luiz Augusto von Dentz <luiz.von.dentz@intel.com> | 2020-01-03 02:00:55 +0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2020-01-04 12:49:23 +0300 |
commit | 1efd927d660e6ab02a9cd32fbbe3c7dc47980132 (patch) | |
tree | 2e2f9a5caea7bc595200287a275d4a122427803b /include/net/bluetooth/hci.h | |
parent | d841502c79e3fda2ba0e8d64f9eb00e9dd884af0 (diff) | |
download | linux-1efd927d660e6ab02a9cd32fbbe3c7dc47980132.tar.xz |
Bluetooth: Add support for LE PHY Update Complete event
This handles LE PHY Update Complete event and store both tx_phy and
rx_phy into hci_conn.
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/net/bluetooth/hci.h')
-rw-r--r-- | include/net/bluetooth/hci.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index 5bc1e30dedde..07b6ecedc6ce 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -2186,6 +2186,14 @@ struct hci_ev_le_direct_adv_info { __s8 rssi; } __packed; +#define HCI_EV_LE_PHY_UPDATE_COMPLETE 0x0c +struct hci_ev_le_phy_update_complete { + __u8 status; + __u16 handle; + __u8 tx_phy; + __u8 rx_phy; +} __packed; + #define HCI_EV_LE_EXT_ADV_REPORT 0x0d struct hci_ev_le_ext_adv_report { __le16 evt_type; |