Commit 662c9bf8 authored by Jes Sorensen's avatar Jes Sorensen Committed by Greg Kroah-Hartman

staging: rtl8723au: Declare rtw_site_survey() static

Signed-off-by: default avatarJes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 96df4b65
...@@ -4384,7 +4384,7 @@ bool IsLegal5GChannel(struct rtw_adapter *Adapter, u8 channel) ...@@ -4384,7 +4384,7 @@ bool IsLegal5GChannel(struct rtw_adapter *Adapter, u8 channel)
return false; return false;
} }
void site_survey23a(struct rtw_adapter *padapter) static void rtw_site_survey(struct rtw_adapter *padapter)
{ {
unsigned char survey_channel = 0; unsigned char survey_channel = 0;
enum rt_scan_type ScanType = SCAN_PASSIVE; enum rt_scan_type ScanType = SCAN_PASSIVE;
...@@ -4401,7 +4401,7 @@ void site_survey23a(struct rtw_adapter *padapter) ...@@ -4401,7 +4401,7 @@ void site_survey23a(struct rtw_adapter *padapter)
} }
if (survey_channel != 0) { if (survey_channel != 0) {
/* PAUSE 4-AC Queue when site_survey23a */ /* PAUSE 4-AC Queue when site_survey */
if (pmlmeext->sitesurvey_res.channel_idx == 0) if (pmlmeext->sitesurvey_res.channel_idx == 0)
set_channel_bwmode23a(padapter, survey_channel, set_channel_bwmode23a(padapter, survey_channel,
HAL_PRIME_CHNL_OFFSET_DONT_CARE, HAL_PRIME_CHNL_OFFSET_DONT_CARE,
...@@ -4440,7 +4440,7 @@ void site_survey23a(struct rtw_adapter *padapter) ...@@ -4440,7 +4440,7 @@ void site_survey23a(struct rtw_adapter *padapter)
pmlmeext->cur_ch_offset, pmlmeext->cur_ch_offset,
pmlmeext->cur_bwmode); pmlmeext->cur_bwmode);
/* flush 4-AC Queue after site_survey23a */ /* flush 4-AC Queue after rtw_site_survey */
/* val8 = 0; */ /* val8 = 0; */
/* config MSR */ /* config MSR */
...@@ -6213,7 +6213,7 @@ int sitesurvey_cmd_hdl23a(struct rtw_adapter *padapter, const u8 *pbuf) ...@@ -6213,7 +6213,7 @@ int sitesurvey_cmd_hdl23a(struct rtw_adapter *padapter, const u8 *pbuf)
pmlmeext->sitesurvey_res.state = SCAN_PROCESS; pmlmeext->sitesurvey_res.state = SCAN_PROCESS;
} }
site_survey23a(padapter); rtw_site_survey(padapter);
return H2C_SUCCESS; return H2C_SUCCESS;
} }
......
...@@ -495,7 +495,6 @@ void flush_all_cam_entry23a(struct rtw_adapter *padapter); ...@@ -495,7 +495,6 @@ void flush_all_cam_entry23a(struct rtw_adapter *padapter);
bool IsLegal5GChannel(struct rtw_adapter *Adapter, u8 channel); bool IsLegal5GChannel(struct rtw_adapter *Adapter, u8 channel);
void site_survey23a(struct rtw_adapter *padapter);
int collect_bss_info23a(struct rtw_adapter *padapter, int collect_bss_info23a(struct rtw_adapter *padapter,
struct recv_frame *precv_frame, struct recv_frame *precv_frame,
struct wlan_bssid_ex *bssid); struct wlan_bssid_ex *bssid);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment