diff options
author | Govind Singh <govinds@codeaurora.org> | 2018-09-03 20:08:01 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2018-09-06 18:55:32 +0300 |
commit | 713358c321f4f8553afe956c0d5e9a87b43d561e (patch) | |
tree | 9ca1ef868f9b0f7a307f6f014908c40159f10ed4 /drivers/net/wireless/ath/ath10k/pci.c | |
parent | 9abcb9371bccc8aed6fea273058c322f4a886a2d (diff) | |
download | linux-713358c321f4f8553afe956c0d5e9a87b43d561e.tar.gz linux-713358c321f4f8553afe956c0d5e9a87b43d561e.tar.bz2 linux-713358c321f4f8553afe956c0d5e9a87b43d561e.zip |
ath10k: enable pktlog for WCN3990 target
WCN3990 target uses separate htc service for pktlog.
Add pktlog service request and support for pktlog
rx path handling.
Testing:
Tested on WCN3990 and QCA6174 HW.
Tested FW: WLAN.HL.2.0-01192-QCAHLSWMTPLZ-1,
WLAN.RM.4.4.1-00109-QCARMSWPZ-1
Signed-off-by: Govind Singh <govinds@codeaurora.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/pci.c')
-rw-r--r-- | drivers/net/wireless/ath/ath10k/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath10k/pci.c b/drivers/net/wireless/ath/ath10k/pci.c index 7122e6aedc1e..7db4a7915624 100644 --- a/drivers/net/wireless/ath/ath10k/pci.c +++ b/drivers/net/wireless/ath/ath10k/pci.c @@ -1839,7 +1839,7 @@ int ath10k_pci_hif_map_service_to_pipe(struct ath10k *ar, u16 service_id, } } - if (WARN_ON(!ul_set || !dl_set)) + if (!ul_set || !dl_set) return -ENOENT; return 0; |