29 lines
830 B
Diff
29 lines
830 B
Diff
From 70a0c21f9bc1eed754cce584fe382883dc412db0 Mon Sep 17 00:00:00 2001
|
|
From: afaulkner420 <afaulkner420@gmail.com>
|
|
Date: Fri, 25 Mar 2022 20:31:26 +0000
|
|
Subject: [PATCH 08/11] uwe5622: bluetooth: Fix firmware init fail
|
|
|
|
---
|
|
net/bluetooth/hci_core.c | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
|
|
index c67390367..b2ee9b6a8 100644
|
|
--- a/net/bluetooth/hci_core.c
|
|
+++ b/net/bluetooth/hci_core.c
|
|
@@ -932,7 +932,11 @@ static int __hci_init(struct hci_dev *hdev)
|
|
|
|
err = __hci_req_sync(hdev, hci_init3_req, 0, HCI_INIT_TIMEOUT, NULL);
|
|
if (err < 0)
|
|
+#if defined(CONFIG_RK_WIFI_DEVICE_UWE5621) || defined(CONFIG_AW_WIFI_DEVICE_UWE5622)
|
|
+ ;
|
|
+#else
|
|
return err;
|
|
+#endif
|
|
|
|
err = __hci_req_sync(hdev, hci_init4_req, 0, HCI_INIT_TIMEOUT, NULL);
|
|
if (err < 0)
|
|
--
|
|
2.25.1
|
|
|