diff options
| author | Ethan Tidmore <ethantidmore06@gmail.com> | 2026-03-31 21:13:57 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2026-04-27 05:01:52 -0600 |
| commit | 2143a136db62b353b18fed69327a3a3391ff5bc8 (patch) | |
| tree | 2b5490b15e4da3bea7368538300f037c32990b58 | |
| parent | 9ef11656cc444a32ff56a2badd2fab44437afbab (diff) | |
| download | linux-2143a136db62b353b18fed69327a3a3391ff5bc8.tar.gz linux-2143a136db62b353b18fed69327a3a3391ff5bc8.zip | |
staging: rtl8723bs: Rename pHT_info_ie to ht_info_ie
Convert variable pHT_info_ie to ht_info_ie to comply with snake_case and
to remove Hungarian notation.
Signed-off-by: Ethan Tidmore <ethantidmore06@gmail.com>
Link: https://patch.msgid.link/20260401021357.1176600-3-ethantidmore06@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/rtl8723bs/core/rtw_ap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8723bs/core/rtw_ap.c b/drivers/staging/rtl8723bs/core/rtw_ap.c index 1b67c5883a66..f213bb8e173c 100644 --- a/drivers/staging/rtl8723bs/core/rtw_ap.c +++ b/drivers/staging/rtl8723bs/core/rtw_ap.c @@ -754,7 +754,7 @@ int rtw_check_beacon_data(struct adapter *padapter, u8 *pbuf, int len) int ret = _SUCCESS; u8 *p; u8 *ht_caps_ie = NULL; - u8 *pHT_info_ie = NULL; + u8 *ht_info_ie = NULL; struct sta_info *psta = NULL; u16 cap, ht_cap = false; uint ie_len = 0; @@ -1007,7 +1007,7 @@ int rtw_check_beacon_data(struct adapter *padapter, u8 *pbuf, int len) &ie_len, (pbss_network->ie_length - _BEACON_IE_OFFSET_)); if (p && ie_len > 0) - pHT_info_ie = p; + ht_info_ie = p; switch (network_type) { case WIRELESS_11B: @@ -1038,7 +1038,7 @@ int rtw_check_beacon_data(struct adapter *padapter, u8 *pbuf, int len) HT_caps_handler(padapter, (struct ndis_80211_var_ie *)ht_caps_ie); - HT_info_handler(padapter, (struct ndis_80211_var_ie *)pHT_info_ie); + HT_info_handler(padapter, (struct ndis_80211_var_ie *)ht_info_ie); } pbss_network->length = |
