Skip to content

Commit 77f542b

Browse files
chethantnVudentz
authored andcommitted
Bluetooth: btintel: Add LE States quirk support
Basically all Intel controllers support both Central/Peripheral LE states. This patch enables the LE States quirk by default on all Solar and Magnertor Intel controllers. Signed-off-by: Chethan T N <[email protected]> Signed-off-by: Luiz Augusto von Dentz <[email protected]>
1 parent 095327f commit 77f542b

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

drivers/bluetooth/btintel.c

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2684,9 +2684,8 @@ static int btintel_setup_combined(struct hci_dev *hdev)
26842684
*/
26852685
set_bit(HCI_QUIRK_WIDEBAND_SPEECH_SUPPORTED, &hdev->quirks);
26862686

2687-
/* Valid LE States quirk for GfP */
2688-
if (INTEL_HW_VARIANT(ver_tlv.cnvi_bt) == 0x18)
2689-
set_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks);
2687+
/* Apply LE States quirk from solar onwards */
2688+
set_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks);
26902689

26912690
/* Setup MSFT Extension support */
26922691
btintel_set_msft_opcode(hdev,

0 commit comments

Comments
 (0)