qcacmn: Config support to use BSSID in probe request RA

User configuration support to use scan request BSSID value
in Probe Request frame RA during the scan.

Change-Id: I40d07e4c3e4814a9c816b3e426dcbb63df7ddf27
CRs-Fixed: 2945679
This commit is contained in:
Kiran Kumar Lokere
2021-05-12 23:53:58 -07:00
committed by Madan Koyyalamudi
parent 64d063094f
commit e2ada05cee
4 changed files with 14 additions and 0 deletions

View File

@@ -153,6 +153,7 @@ struct scan_req {
* inapplicable.
* @dwell_time_passive_6g: 6 GHz specific passive dwell time. Ignored if zero or
* inapplicable.
* @scan_probe_unicast_ra: Use BSSID in probe request frame RA.
* @scan_f_2ghz: Scan only 2GHz channels
* @scan_f_5ghz: Scan only 5+6GHz channels
*/
@@ -169,6 +170,7 @@ struct scan_params {
uint32_t dwell_time_passive;
uint32_t dwell_time_active_6g;
uint32_t dwell_time_passive_6g;
bool scan_probe_unicast_ra;
bool scan_f_2ghz;
bool scan_f_5ghz;
};