Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save BlackIkeEagle/630e76164d9eca5f1eb617888c7f1576 to your computer and use it in GitHub Desktop.
Save BlackIkeEagle/630e76164d9eca5f1eb617888c7f1576 to your computer and use it in GitHub Desktop.
Starlite MkV BLE "fix"
From 49de268ad2d7f217579090da90a5d93cad281477 Mon Sep 17 00:00:00 2001
From: BlackEagle <[email protected]>
Date: Tue, 18 Mar 2025 09:06:21 +0100
Subject: [PATCH] Bluetooth: btintel, don't reclassify signal for GfP2 and GaP
Should fix issue with LE devices not being found or able to connect.
---
drivers/bluetooth/btintel.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/drivers/bluetooth/btintel.c b/drivers/bluetooth/btintel.c
index d496cf2c3411..4ecebae58792 100644
--- a/drivers/bluetooth/btintel.c
+++ b/drivers/bluetooth/btintel.c
@@ -3249,9 +3249,6 @@ static int btintel_setup_combined(struct hci_dev *hdev)
break;
case 0x18: /* GfP2 */
case 0x1c: /* GaP */
- /* Re-classify packet type for controllers with LE audio */
- hdev->classify_pkt_type = btintel_classify_pkt_type;
- fallthrough;
case 0x17:
case 0x19:
case 0x1b:
--
2.49.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment