Commit a3baa8f0 authored by Aloka Dixit's avatar Aloka Dixit Committed by Kalle Valo
Browse files

ath11k: Fix TWT radio count



TWT feature fails on radio2 because physical device count is
hardcoded to 2. Set value dynamically.

Signed-off-by: default avatarAloka Dixit <alokad@codeaurora.org>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20200408174117.22957-1-alokad@codeaurora.org
parent bd902b1b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3245,7 +3245,7 @@ int ath11k_wmi_cmd_init(struct ath11k_base *ab)
	config.beacon_tx_offload_max_vdev = ab->num_radios * TARGET_MAX_BCN_OFFLD;
	config.rx_batchmode = TARGET_RX_BATCHMODE;
	config.peer_map_unmap_v2_support = 1;
	config.twt_ap_pdev_count = 2;
	config.twt_ap_pdev_count = ab->num_radios;
	config.twt_ap_sta_count = 1000;

	memcpy(&wmi_sc->wlan_resource_config, &config, sizeof(config));