Skip to content

Commit ae44fa9

Browse files
Tsang-Shian LinKalle Valo
authored andcommitted
rtw88: fix LDPC field for RA info
Convert the type of LDPC field to boolen because LDPC field of RA info H2C command to firmware is only one bit. Fixes: e303748 ("rtw88: new Realtek 802.11ac driver") Signed-off-by: Tsang-Shian Lin <thlin@realtek.com> Signed-off-by: Yan-Hsuan Chuang <yhchuang@realtek.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org> Link: https://lore.kernel.org/r/20200717064937.27966-2-yhchuang@realtek.com
1 parent 84d4796 commit ae44fa9

File tree

1 file changed

+1
-1
lines changed
  • drivers/net/wireless/realtek/rtw88

1 file changed

+1
-1
lines changed

drivers/net/wireless/realtek/rtw88/fw.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ void rtw_fw_send_ra_info(struct rtw_dev *rtwdev, struct rtw_sta_info *si)
456456
SET_RA_INFO_INIT_RA_LVL(h2c_pkt, si->init_ra_lv);
457457
SET_RA_INFO_SGI_EN(h2c_pkt, si->sgi_enable);
458458
SET_RA_INFO_BW_MODE(h2c_pkt, si->bw_mode);
459-
SET_RA_INFO_LDPC(h2c_pkt, si->ldpc_en);
459+
SET_RA_INFO_LDPC(h2c_pkt, !!si->ldpc_en);
460460
SET_RA_INFO_NO_UPDATE(h2c_pkt, no_update);
461461
SET_RA_INFO_VHT_EN(h2c_pkt, si->vht_enable);
462462
SET_RA_INFO_DIS_PT(h2c_pkt, disable_pt);

0 commit comments

Comments
 (0)