diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2020-04-09 09:05:47 +0300 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2020-04-15 16:50:59 +0300 |
commit | 55beec10710d10cb4a1cbbc5b1a0d9c9cfbd2c1e (patch) | |
tree | c28c713ac5e6a9502e9272bb016998868c6287ba /include/net/bluetooth | |
parent | 04896832c94aae4842100cafb8d3a73e1bed3a45 (diff) | |
download | linux-55beec10710d10cb4a1cbbc5b1a0d9c9cfbd2c1e.tar.xz |
Bluetooth: Sort list of LE features constants
The list of LE features constants has gotten a bit confused. It lost the
order and gained duplicated. Clean this up.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'include/net/bluetooth')
-rw-r--r-- | include/net/bluetooth/hci.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index f4e8e2a0b7c1..ff42d05b3e72 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -460,12 +460,10 @@ enum { #define HCI_LE_SLAVE_FEATURES 0x08 #define HCI_LE_PING 0x10 #define HCI_LE_DATA_LEN_EXT 0x20 -#define HCI_LE_PHY_2M 0x01 -#define HCI_LE_PHY_CODED 0x08 -#define HCI_LE_EXT_ADV 0x10 #define HCI_LE_EXT_SCAN_POLICY 0x80 #define HCI_LE_PHY_2M 0x01 #define HCI_LE_PHY_CODED 0x08 +#define HCI_LE_EXT_ADV 0x10 #define HCI_LE_CHAN_SEL_ALG2 0x40 #define HCI_LE_CIS_MASTER 0x10 #define HCI_LE_CIS_SLAVE 0x20 |