mirror of
https://github.com/armbian/build.git
synced 2025-08-10 05:06:57 +02:00
* Bump bcm, imx, mvebu64, xu4 and rockchip to 6.1.y * Add configs for imx6 and xu4 * Add broadcom kernel config * Move XU4 edge to mainline kernel as hardkernel branch contain nothing for it * Move Rockchip64 EDGE to 6.1 * Move rockchip (32 bit) edge to kernel 6.1 * Move rk322x edge kernel to 6.1 Co-authored-by: Paolo Sabatino <paolo.sabatino@gmail.com>
27 lines
867 B
Diff
27 lines
867 B
Diff
From e5c9702bd2ffd09e48c118ab40c2764590af7929 Mon Sep 17 00:00:00 2001
|
|
From: Paolo Sabatino <paolo.sabatino@gmail.com>
|
|
Date: Sat, 1 May 2021 12:41:14 +0000
|
|
Subject: [PATCH] Workaround to make several broadcom bluetooth serdev devices
|
|
work even without proper MAC address
|
|
|
|
---
|
|
drivers/bluetooth/btbcm.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/bluetooth/btbcm.c b/drivers/bluetooth/btbcm.c
|
|
index 1b9743b7f..b274f1cdd 100644
|
|
--- a/drivers/bluetooth/btbcm.c
|
|
+++ b/drivers/bluetooth/btbcm.c
|
|
@@ -87,7 +87,7 @@ int btbcm_check_bdaddr(struct hci_dev *hdev)
|
|
!bacmp(&bda->bdaddr, BDADDR_BCM43341B)) {
|
|
bt_dev_info(hdev, "BCM: Using default device address (%pMR)",
|
|
&bda->bdaddr);
|
|
- set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
|
|
+ //set_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks);
|
|
}
|
|
|
|
kfree_skb(skb);
|
|
--
|
|
2.25.1
|
|
|