mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 22:14:04 +02:00
staging: rtl8723bs: remove wrapper rtw_os_indicate_scan_done
The function rtw_os_indicate_scan_done is just a wrapper around rtw_cfg80211_indicate_scan_done. Use rtw_cfg80211_indicate_scan_done directly and remove the wrapper. Signed-off-by: Michael Straube <straube.linux@gmail.com> Tested-by: Hans de Goede <hansg@kernel.org> Reviewed-by: Hans de Goede <hansg@kernel.org> Link: https://lore.kernel.org/r/20250801083131.82915-2-straube.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
08a2e17462
commit
7c0480fd76
|
|
@ -911,7 +911,7 @@ void rtw_indicate_disconnect(struct adapter *padapter)
|
|||
|
||||
inline void rtw_indicate_scan_done(struct adapter *padapter, bool aborted)
|
||||
{
|
||||
rtw_os_indicate_scan_done(padapter, aborted);
|
||||
rtw_cfg80211_indicate_scan_done(padapter, aborted);
|
||||
|
||||
if ((!adapter_to_pwrctl(padapter)->bInSuspend) &&
|
||||
(!check_fwstate(&padapter->mlmepriv,
|
||||
|
|
|
|||
|
|
@ -11,7 +11,6 @@
|
|||
extern void rtw_init_mlme_timer(struct adapter *padapter);
|
||||
extern void rtw_os_indicate_disconnect(struct adapter *adapter);
|
||||
extern void rtw_os_indicate_connect(struct adapter *adapter);
|
||||
void rtw_os_indicate_scan_done(struct adapter *padapter, bool aborted);
|
||||
extern void rtw_report_sec_ie(struct adapter *adapter, u8 authmode, u8 *sec_ie);
|
||||
|
||||
void rtw_reset_securitypriv(struct adapter *adapter);
|
||||
|
|
|
|||
|
|
@ -53,11 +53,6 @@ void rtw_os_indicate_connect(struct adapter *adapter)
|
|||
rtw_signal_process(adapter->pid[2], SIGALRM);
|
||||
}
|
||||
|
||||
void rtw_os_indicate_scan_done(struct adapter *padapter, bool aborted)
|
||||
{
|
||||
rtw_cfg80211_indicate_scan_done(padapter, aborted);
|
||||
}
|
||||
|
||||
static struct rt_pmkid_list backupPMKIDList[NUM_PMKID_CACHE];
|
||||
void rtw_reset_securitypriv(struct adapter *adapter)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user