All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rtw88: use the correct bit in the REG_HCI_OPT_CTRL register
@ 2022-04-22 14:50 Kevin Lo
  2022-04-24 23:49 ` Pkshih
  2022-04-27  4:58 ` Kalle Valo
  0 siblings, 2 replies; 3+ messages in thread
From: Kevin Lo @ 2022-04-22 14:50 UTC (permalink / raw)
  To: Ping-Ke Shih; +Cc: linux-wireless

Write the BIT_USB_SUS_DIS bit rather than BIT_BT_DIG_CLK_EN to the
REG_HCI_OPT_CTRL register for fixing failure to PCIe power on.

Signed-off-by: Kevin Lo <kevlo@kevlo.org>
---
diff --git a/drivers/net/wireless/realtek/rtw88/mac.c b/drivers/net/wireless/realtek/rtw88/mac.c
index d1678aed9d9c..caf2603da2d6 100644
--- a/drivers/net/wireless/realtek/rtw88/mac.c
+++ b/drivers/net/wireless/realtek/rtw88/mac.c
@@ -75,7 +75,7 @@ static int rtw_mac_pre_system_cfg(struct rtw_dev *rtwdev)
 
 	switch (rtw_hci_type(rtwdev)) {
 	case RTW_HCI_TYPE_PCIE:
-		rtw_write32_set(rtwdev, REG_HCI_OPT_CTRL, BIT_BT_DIG_CLK_EN);
+		rtw_write32_set(rtwdev, REG_HCI_OPT_CTRL, BIT_USB_SUS_DIS);
 		break;
 	case RTW_HCI_TYPE_USB:
 		break;

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-04-27  4:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-22 14:50 [PATCH] rtw88: use the correct bit in the REG_HCI_OPT_CTRL register Kevin Lo
2022-04-24 23:49 ` Pkshih
2022-04-27  4:58 ` Kalle Valo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.