qcacmn: Set the flag for max BW support

Currently the FW expects the flag of
scan chan cmd to be set if the max BW
is filled for all the channels, which
is not set by driver.

Fix is to set the flag's 2 bit to allow
FW to use the max chanel BW.

Change-Id: Id3ce009fbd3c846713d456436c70b44a44428577
CRs-Fixed: 2550434
This commit is contained in:
gaurank kathpalia
2019-10-22 13:09:38 +05:30
committed by nshrivas
parent c36f7a110e
commit 30be97c162
2 changed files with 5 additions and 0 deletions

View File

@@ -1112,12 +1112,14 @@ struct ap_ps_params {
* @num_chan: no of scan channels
* @nallchans: nall chans
* @append: append to existing chan list
* @max_bw_support_present: max BW support present
* @ch_param: pointer to channel_paramw
*/
struct scan_chan_list_params {
uint32_t pdev_id;
uint16_t nallchans;
bool append;
bool max_bw_support_present;
struct channel_param ch_param[1];
};