You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
From 903a4e9d1c1a8a1790fef08c63c0b173c087dfaa Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?=C3=8D=C3=B1igo=20Huguet?= <ihuguet@redhat.com>
|
|
Date: Fri, 21 Jan 2022 08:49:02 +0100
|
|
Subject: [PATCH 06/36] rtw89: fix error function parameter
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Bugzilla: http://bugzilla.redhat.com/2033291
|
|
|
|
commit dea857700a75943017488b1d47f6687cfc037642
|
|
Author: Lv Ruyi <lv.ruyi@zte.com.cn>
|
|
Date: Thu Oct 21 04:20:35 2021 +0000
|
|
|
|
rtw89: fix error function parameter
|
|
|
|
This patch fixes the following Coccinelle warning:
|
|
drivers/net/wireless/realtek/rtw89/rtw8852a.c:753:
|
|
WARNING possible condition with no effect (if == else)
|
|
|
|
Reported-by: Zeal Robot <zealci@zte.com.cn>
|
|
Signed-off-by: Lv Ruyi <lv.ruyi@zte.com.cn>
|
|
Acked-by: Ping-Ke Shih <pkshih@realtek.com>
|
|
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
|
|
Link: https://lore.kernel.org/r/20211021042035.1042463-1-lv.ruyi@zte.com.cn
|
|
|
|
Signed-off-by: Íñigo Huguet <ihuguet@redhat.com>
|
|
---
|
|
drivers/net/wireless/realtek/rtw89/rtw8852a.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/net/wireless/realtek/rtw89/rtw8852a.c b/drivers/net/wireless/realtek/rtw89/rtw8852a.c
|
|
index b1b87f0aadbb..5c6ffca3a324 100644
|
|
--- a/drivers/net/wireless/realtek/rtw89/rtw8852a.c
|
|
+++ b/drivers/net/wireless/realtek/rtw89/rtw8852a.c
|
|
@@ -757,7 +757,7 @@ static void rtw8852a_ctrl_ch(struct rtw89_dev *rtwdev, u8 central_ch,
|
|
else
|
|
rtw89_phy_write32_idx(rtwdev, R_P1_MODE,
|
|
B_P1_MODE_SEL,
|
|
- 1, phy_idx);
|
|
+ 0, phy_idx);
|
|
/* SCO compensate FC setting */
|
|
sco_comp = rtw8852a_sco_mapping(central_ch);
|
|
rtw89_phy_write32_idx(rtwdev, R_FC0_BW, B_FC0_BW_INV,
|
|
--
|
|
2.13.6
|
|
|