Files
linux-t2-patches/9001-bluetooth-disable-read-LE-MinMax-Tx-Power.patch
T
Redecorating 265e82921b Fix BT for 16,1 by disabling read LE Min/Max Tx Power
This won't be upstreamed, but it works for us.
2021-09-26 20:13:25 +10:00

13 lines
376 B
Diff

--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -742,7 +742,7 @@ static int hci_init3_req(struct hci_request *req, unsigned long opt)
hci_req_add(req, HCI_OP_LE_READ_ADV_TX_POWER, 0, NULL);
}
- if (hdev->commands[38] & 0x80) {
+ if (false) {
/* Read LE Min/Max Tx Power*/
hci_req_add(req, HCI_OP_LE_READ_TRANSMIT_POWER,
0, NULL);
--