mirror of
https://github.com/torvalds/linux.git
synced 2026-07-31 11:37:06 +02:00
staging: rtl8723bs: rename shortGIrate to short_gi_rate
Rename the CamelCase variable 'shortGIrate' to 'short_gi_rate' to comply with Linux kernel coding style guidelines. Signed-off-by: Rupesh Majhi <zoone.rupert@gmail.com> Link: https://patch.msgid.link/20251222132430.24491-1-zoone.rupert@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5d2905f2c6
commit
e6900ce28c
|
|
@ -320,7 +320,7 @@ void expire_timeout_chk(struct adapter *padapter)
|
|||
|
||||
void add_RATid(struct adapter *padapter, struct sta_info *psta, u8 rssi_level)
|
||||
{
|
||||
unsigned char sta_band = 0, shortGIrate = false;
|
||||
unsigned char sta_band = 0, short_gi_rate = false;
|
||||
unsigned int tx_ra_bitmap = 0;
|
||||
struct mlme_priv *pmlmepriv = &padapter->mlmepriv;
|
||||
struct wlan_bssid_ex
|
||||
|
|
@ -335,7 +335,7 @@ void add_RATid(struct adapter *padapter, struct sta_info *psta, u8 rssi_level)
|
|||
rtw_hal_update_sta_rate_mask(padapter, psta);
|
||||
tx_ra_bitmap = psta->ra_mask;
|
||||
|
||||
shortGIrate = query_ra_short_GI(psta);
|
||||
short_gi_rate = query_ra_short_GI(psta);
|
||||
|
||||
if (pcur_network->configuration.ds_config > 14) {
|
||||
sta_band |= WIRELESS_INVALID;
|
||||
|
|
@ -358,7 +358,7 @@ void add_RATid(struct adapter *padapter, struct sta_info *psta, u8 rssi_level)
|
|||
|
||||
arg[0] = psta->mac_id;
|
||||
arg[1] = psta->raid;
|
||||
arg[2] = shortGIrate;
|
||||
arg[2] = short_gi_rate;
|
||||
arg[3] = psta->init_rate;
|
||||
|
||||
rtw_hal_add_ra_tid(padapter, tx_ra_bitmap, arg, rssi_level);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user