[PATCH v2 2/3] staging: rtl8723bs: Modify struct sta_info attribute qos_option
Erick Karanja <[email protected]> Wed, 2 Apr 2025 20:16:43 +0300
| Newsgroups | dev.linux.lists.outreachy,dev.linux.lists.linux-staging,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <c303000c4edded3c66593e62230d661cf49f7e71.1743613025.git.karanja99erick@gmail.com> |
Standardize boolean representation by ensuring consistency, replacing instances of 1/0 with true/false where boolean logic is implied, as some definitions already use true/false. This improves code clarity and aligns with the kernel’s bool type usage. Signed-off-by: Erick Karanja <[email protected]> --- drivers/staging/rtl8723bs/core/rtw_mlme_ext.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c b/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c index 952ce6dd5af9..8f2c9c3e853c 100644 --- a/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c +++ b/drivers/staging/rtl8723bs/core/rtw_mlme_ext.c @@ -1173,7 +1173,7 @@ unsigned int OnAssocReq(struct adapter *padapter, union recv_frame *precv_frame) /* check if there is WMM IE & support WWM-PS */ pstat->flags &= ~WLAN_STA_WME; - pstat->qos_option = 0; + pstat->qos_option = false; pstat->qos_info = 0; pstat->has_legacy_ac = true; pstat->uapsd_vo = 0; @@ -1189,7 +1189,7 @@ unsigned int OnAssocReq(struct adapter *padapter, union recv_frame *precv_frame) pstat->flags |= WLAN_STA_WME; - pstat->qos_option = 1; + pstat->qos_option = true; pstat->qos_info = *(p+8); pstat->max_sp_len = (pstat->qos_info>>5)&0x3; -- 2.43.0