ath10k: fix tlv 5ghz channel missing issue
The 5ghz channel parameters of TLV target wasn't passed to host, it caused host can only use lower channels from 36 to 64. Signed-off-by: Zhi Chen <zhichen@codeaurora.org> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
parent
c829198880
commit
98dc04ba60
|
@ -1076,6 +1076,8 @@ static int ath10k_wmi_tlv_op_pull_svc_rdy_ev(struct ath10k *ar,
|
||||||
arg->phy_capab = ev->phy_capability;
|
arg->phy_capab = ev->phy_capability;
|
||||||
arg->num_rf_chains = ev->num_rf_chains;
|
arg->num_rf_chains = ev->num_rf_chains;
|
||||||
arg->eeprom_rd = reg->eeprom_rd;
|
arg->eeprom_rd = reg->eeprom_rd;
|
||||||
|
arg->low_5ghz_chan = reg->low_5ghz_chan;
|
||||||
|
arg->high_5ghz_chan = reg->high_5ghz_chan;
|
||||||
arg->num_mem_reqs = ev->num_mem_reqs;
|
arg->num_mem_reqs = ev->num_mem_reqs;
|
||||||
arg->service_map = svc_bmap;
|
arg->service_map = svc_bmap;
|
||||||
arg->service_map_len = ath10k_wmi_tlv_len(svc_bmap);
|
arg->service_map_len = ath10k_wmi_tlv_len(svc_bmap);
|
||||||
|
|
Loading…
Reference in New Issue