Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

staging: rtl8723au: Declare rtw_site_survey() static

parent 96df4b65
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -4384,7 +4384,7 @@ bool IsLegal5GChannel(struct rtw_adapter *Adapter, u8 channel)
	return false;
}

void site_survey23a(struct rtw_adapter *padapter)
static void rtw_site_survey(struct rtw_adapter *padapter)
{
	unsigned char survey_channel = 0;
	enum rt_scan_type ScanType = SCAN_PASSIVE;
@@ -4401,7 +4401,7 @@ void site_survey23a(struct rtw_adapter *padapter)
	}

	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)
			set_channel_bwmode23a(padapter, survey_channel,
					      HAL_PRIME_CHNL_OFFSET_DONT_CARE,
@@ -4440,7 +4440,7 @@ void site_survey23a(struct rtw_adapter *padapter)
				      pmlmeext->cur_ch_offset,
				      pmlmeext->cur_bwmode);

		/* flush 4-AC Queue after site_survey23a */
		/* flush 4-AC Queue after rtw_site_survey */
		/* val8 = 0; */

		/* config MSR */
@@ -6213,7 +6213,7 @@ int sitesurvey_cmd_hdl23a(struct rtw_adapter *padapter, const u8 *pbuf)
		pmlmeext->sitesurvey_res.state = SCAN_PROCESS;
	}

	site_survey23a(padapter);
	rtw_site_survey(padapter);

	return H2C_SUCCESS;
}
+0 −1
Original line number Diff line number Diff line
@@ -495,7 +495,6 @@ void flush_all_cam_entry23a(struct rtw_adapter *padapter);

bool IsLegal5GChannel(struct rtw_adapter *Adapter, u8 channel);

void site_survey23a(struct rtw_adapter *padapter);
int collect_bss_info23a(struct rtw_adapter *padapter,
			struct recv_frame *precv_frame,
			struct wlan_bssid_ex *bssid);