[PATCH 43/65] staging: wfx: fix case where RTS threshold is 0

From: JÃrÃme Pouiller
Date: Wed Jan 15 2020 - 07:16:27 EST


From: JÃrÃme Pouiller <jerome.pouiller@xxxxxxxxxx>

If RTS threshold is 0, it currently disables RTS. It should mean
"enabled for every frames".

Signed-off-by: JÃrÃme Pouiller <jerome.pouiller@xxxxxxxxxx>
---
drivers/staging/wfx/hif_tx_mib.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/wfx/hif_tx_mib.h b/drivers/staging/wfx/hif_tx_mib.h
index ccea3f15a34d..bf3769c2a9b6 100644
--- a/drivers/staging/wfx/hif_tx_mib.h
+++ b/drivers/staging/wfx/hif_tx_mib.h
@@ -391,7 +391,7 @@ static inline int hif_wep_default_key_id(struct wfx_vif *wvif, int val)
static inline int hif_rts_threshold(struct wfx_vif *wvif, int val)
{
struct hif_mib_dot11_rts_threshold arg = {
- .threshold = cpu_to_le32(val > 0 ? val : 0xFFFF),
+ .threshold = cpu_to_le32(val >= 0 ? val : 0xFFFF),
};

return hif_write_mib(wvif->wdev, wvif->id,
--
2.25.0