[PATCH 1/3] staging: rtl8723bs: Use true/false instead of 1/0
Erick Karanja <[email protected]> Wed, 2 Apr 2025 15:47:41 +0300
| Newsgroups | dev.linux.lists.outreachy,dev.linux.lists.linux-staging,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <49c14bf7475d121e7b3f600e46b93c003851abd1.1743596287.git.karanja99erick@gmail.com> |
Standardize boolean representation by replacing 1/0 with true/false in cases where boolean logic is implied. 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_ap.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/staging/rtl8723bs/core/rtw_ap.c b/drivers/staging/rtl8723bs/core/rtw_ap.c index d46a04b9a05e..199727f04516 100644 --- a/drivers/staging/rtl8723bs/core/rtw_ap.c +++ b/drivers/staging/rtl8723bs/core/rtw_ap.c @@ -386,10 +386,10 @@ void update_bmc_sta(struct adapter *padapter) pmlmeinfo->FW_sta_info[psta->mac_id].psta = psta; - psta->qos_option = 0; + psta->qos_option = false; psta->htpriv.ht_option = false; - psta->ieee8021x_blocked = 0; + psta->ieee8021x_blocked = false; memset((void *)&psta->sta_stats, 0, sizeof(struct stainfo_stats)); @@ -1967,17 +1967,17 @@ void sta_info_update(struct adapter *padapter, struct sta_info *psta) /* update wmm cap. */ if (WLAN_STA_WME & flags) - psta->qos_option = 1; + psta->qos_option = true; else - psta->qos_option = 0; + psta->qos_option = false; if (pmlmepriv->qospriv.qos_option == 0) - psta->qos_option = 0; + psta->qos_option = false; /* update 802.11n ht cap. */ if (WLAN_STA_HT & flags) { psta->htpriv.ht_option = true; - psta->qos_option = 1; + psta->qos_option = true; } else { psta->htpriv.ht_option = false; } -- 2.43.0