]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
staging: rtl8723bs: rename camelCase variable
authorNikolay Kulikov <nikolayof23@gmail.com>
Mon, 16 Feb 2026 07:28:06 +0000 (10:28 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 23 Feb 2026 15:20:41 +0000 (16:20 +0100)
Rename "pHT_caps_ie" to "ht_caps_ie" local variable to comply with
Linux kernel coding style.

This fixes the following checkpatch.pl warnings:
CHECK: Avoid CamelCase: <pHT_caps_ie>

Signed-off-by: Nikolay Kulikov <nikolayof23@gmail.com>
Link: https://patch.msgid.link/20260216072830.4260-1-nikolayof23@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723bs/core/rtw_ap.c

index 2eb87ff148b63510811213ded3285610fc9063e7..3e62fc8f61cfee0600ae68c3e11a51f483f06a8c 100644 (file)
@@ -800,7 +800,7 @@ int rtw_check_beacon_data(struct adapter *padapter, u8 *pbuf,  int len)
 {
        int ret = _SUCCESS;
        u8 *p;
-       u8 *pHT_caps_ie = NULL;
+       u8 *ht_caps_ie = NULL;
        u8 *pHT_info_ie = NULL;
        struct sta_info *psta = NULL;
        u16 cap, ht_cap = false;
@@ -1006,7 +1006,7 @@ int rtw_check_beacon_data(struct adapter *padapter, u8 *pbuf,  int len)
                u8 max_rx_ampdu_factor = 0;
                struct ieee80211_ht_cap *pht_cap = (struct ieee80211_ht_cap *)(p + 2);
 
-               pHT_caps_ie = p;
+               ht_caps_ie = p;
 
                ht_cap = true;
                network_type |= WIRELESS_11_24N;
@@ -1094,7 +1094,7 @@ int rtw_check_beacon_data(struct adapter *padapter, u8 *pbuf,  int len)
                if (pregistrypriv->ampdu_enable == 1)
                        pmlmepriv->htpriv.ampdu_enable = true;
 
-               HT_caps_handler(padapter, (struct ndis_80211_var_ie *)pHT_caps_ie);
+               HT_caps_handler(padapter, (struct ndis_80211_var_ie *)ht_caps_ie);
 
                HT_info_handler(padapter, (struct ndis_80211_var_ie *)pHT_info_ie);
        }