From 8ceaea179cdcdef7befa48312a11b9f20c2b4891 Mon Sep 17 00:00:00 2001 From: Piotr Pryga Date: Wed, 31 Mar 2021 07:59:21 +0200 Subject: [PATCH] include: Bluetooth: hci: move command to appropriate position in file All commands are put in the file according to OpCode Command Field increasing order. bt_hci_cp_le_set_cl_cte_tx_enable was written in wrong position. This commit moves it to correct one. Signed-off-by: Piotr Pryga --- include/bluetooth/hci.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/bluetooth/hci.h b/include/bluetooth/hci.h index 868c9b804c7..dc04a70942a 100644 --- a/include/bluetooth/hci.h +++ b/include/bluetooth/hci.h @@ -1487,12 +1487,6 @@ struct bt_hci_cp_le_set_privacy_mode { uint8_t mode; } __packed; -#define BT_HCI_OP_LE_SET_CL_CTE_TX_ENABLE BT_OP(BT_OGF_LE, 0x0052) -struct bt_hci_cp_le_set_cl_cte_tx_enable { - uint8_t handle; - uint8_t cte_enable; -} __packed; - /* Min and max Constant Tone Extension length in 8us units */ #define BT_HCI_LE_CTE_LEN_MIN 0x2 #define BT_HCI_LE_CTE_LEN_MAX 0x14