mirror of
https://github.com/torvalds/linux.git
synced 2026-05-22 22:22:08 +02:00
Staging: rtl8723bs: Rename function SelectChannel()
Rename function SelectChannel() to r8723bs_select_channel(), to avoid CamelCase and to improve cleanliness of the global namespace. Signed-off-by: vivek t s <vivek6429.ts@gmail.com> Link: https://lore.kernel.org/r/ZtmD8i7YZLRIcaI9@victor-IdeaPad-Gaming-3-16IAH7 Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5159b05a43
commit
59e574141f
|
|
@ -277,7 +277,7 @@ void expire_timeout_chk(struct adapter *padapter)
|
|||
/* switch to correct channel of current network before issue keep-alive frames */
|
||||
if (rtw_get_oper_ch(padapter) != pmlmeext->cur_channel) {
|
||||
backup_oper_channel = rtw_get_oper_ch(padapter);
|
||||
SelectChannel(padapter, pmlmeext->cur_channel);
|
||||
r8723bs_select_channel(padapter, pmlmeext->cur_channel);
|
||||
}
|
||||
|
||||
/* issue null data to check sta alive*/
|
||||
|
|
@ -315,7 +315,7 @@ void expire_timeout_chk(struct adapter *padapter)
|
|||
}
|
||||
|
||||
if (backup_oper_channel > 0) /* back to the original operation channel */
|
||||
SelectChannel(padapter, backup_oper_channel);
|
||||
r8723bs_select_channel(padapter, backup_oper_channel);
|
||||
}
|
||||
|
||||
associated_clients_update(padapter, updated);
|
||||
|
|
|
|||
|
|
@ -3831,10 +3831,10 @@ void site_survey(struct adapter *padapter)
|
|||
} else {
|
||||
#ifdef DBG_FIXED_CHAN
|
||||
if (pmlmeext->fixed_chan != 0xff)
|
||||
SelectChannel(padapter, pmlmeext->fixed_chan);
|
||||
r8723bs_select_channel(padapter, pmlmeext->fixed_chan);
|
||||
else
|
||||
#endif
|
||||
SelectChannel(padapter, survey_channel);
|
||||
r8723bs_select_channel(padapter, survey_channel);
|
||||
}
|
||||
|
||||
if (ScanType == SCAN_ACTIVE) { /* obey the channel plan setting... */
|
||||
|
|
|
|||
|
|
@ -333,7 +333,7 @@ inline unsigned long rtw_get_on_cur_ch_time(struct adapter *adapter)
|
|||
return 0;
|
||||
}
|
||||
|
||||
void SelectChannel(struct adapter *padapter, unsigned char channel)
|
||||
void r8723bs_select_channel(struct adapter *padapter, unsigned char channel)
|
||||
{
|
||||
if (mutex_lock_interruptible(&(adapter_to_dvobj(padapter)->setch_mutex)))
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -455,7 +455,7 @@ u8 rtw_get_center_ch(u8 channel, u8 chnl_bw, u8 chnl_offset);
|
|||
unsigned long rtw_get_on_cur_ch_time(struct adapter *adapter);
|
||||
|
||||
void set_channel_bwmode(struct adapter *padapter, unsigned char channel, unsigned char channel_offset, unsigned short bwmode);
|
||||
void SelectChannel(struct adapter *padapter, unsigned char channel);
|
||||
void r8723bs_select_channel(struct adapter *padapter, unsigned char channel);
|
||||
|
||||
unsigned int decide_wait_for_beacon_timeout(unsigned int bcn_interval);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user