[PATCH v2 1/3] staging: rtl8723bs: Modify struct rx_pkt_attrib attribute bdecrypted
Erick Karanja <[email protected]> Wed, 2 Apr 2025 20:16:42 +0300
| Newsgroups | dev.linux.lists.outreachy,dev.linux.lists.linux-staging,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <00287fa9f40c643b8451a0d2df8e2fb97235ee46.1743613025.git.karanja99erick@gmail.com> |
Standardize boolean representation by ensuring consistency, replace 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_recv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8723bs/core/rtw_recv.c b/drivers/staging/rtl8723bs/core/rtw_recv.c index a389ba5ecc6f..fd04dbacb50f 100644 --- a/drivers/staging/rtl8723bs/core/rtw_recv.c +++ b/drivers/staging/rtl8723bs/core/rtw_recv.c @@ -1358,7 +1358,7 @@ static signed int validate_80211w_mgmt(struct adapter *adapter, union recv_frame u8 *mgmt_DATA; u32 data_len = 0; - pattrib->bdecrypted = 0; + pattrib->bdecrypted = false; pattrib->encrypt = _AES_; pattrib->hdrlen = sizeof(struct ieee80211_hdr_3addr); /* set iv and icv length */ -- 2.43.0