diff options
author | 2019-05-27 17:39:24 +0300 | |
---|---|---|
committer | 2019-06-25 15:47:24 +0300 | |
commit | bc31c2cfecc7a0d7018c714ada718d7cc23d2b88 (patch) | |
tree | 68def37843ae71152ec55b9af8a4d5c95366d9a3 | |
parent | ath10k: add inline wrapper for htt_h2t_aggr_cfg_msg (diff) | |
download | linux-dev-bc31c2cfecc7a0d7018c714ada718d7cc23d2b88.tar.xz linux-dev-bc31c2cfecc7a0d7018c714ada718d7cc23d2b88.zip |
ath10k: add htt_h2t_aggr_cfg_msg op for high latency devices
Without this op, it will not be possible to configure aggregation for
high latency devices.
Signed-off-by: Erik Stromdahl <erik.stromdahl@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
-rw-r--r-- | drivers/net/wireless/ath/ath10k/htt_tx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath10k/htt_tx.c b/drivers/net/wireless/ath/ath10k/htt_tx.c index 1195f9e24dc0..2ef717f18795 100644 --- a/drivers/net/wireless/ath/ath10k/htt_tx.c +++ b/drivers/net/wireless/ath/ath10k/htt_tx.c @@ -1765,6 +1765,7 @@ static const struct ath10k_htt_tx_ops htt_tx_ops_hl = { .htt_send_rx_ring_cfg = ath10k_htt_send_rx_ring_cfg_hl, .htt_send_frag_desc_bank_cfg = ath10k_htt_send_frag_desc_bank_cfg_32, .htt_tx = ath10k_htt_tx_hl, + .htt_h2t_aggr_cfg_msg = ath10k_htt_h2t_aggr_cfg_msg_32, }; void ath10k_htt_set_tx_ops(struct ath10k_htt *htt) |