]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
staging: rtl8723bs: replace uint with unsigned int
authorOmer El Idrissi <omer.e.idrissi@gmail.com>
Sun, 25 Jan 2026 18:59:55 +0000 (19:59 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 27 Jan 2026 14:46:24 +0000 (15:46 +0100)
Replace non-standard uint type with explicit unsigned int
to improve readability and conform to kernel coding style.

Signed-off-by: Omer El Idrissi <omer.e.idrissi@gmail.com>
Link: https://patch.msgid.link/20260125185956.13882-1-omer.e.idrissi@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_recv.c

index 24cc4a9e044522098fe5e1e32987de9c194c7ed6..0a8725686721d2a8570044ebc9394abb5bd27760 100644 (file)
@@ -501,7 +501,7 @@ static union recv_frame *portctrl(struct adapter *adapter, union recv_frame *pre
 {
        u8 *psta_addr = NULL;
        u8 *ptr;
-       uint  auth_alg;
+       unsigned int auth_alg;
        struct recv_frame_hdr *pfhdr;
        struct sta_info *psta;
        struct sta_priv *pstapriv;