diff options
author | Bartosz Markowski <bartosz.markowski@tieto.com> | 2013-10-15 03:26:20 -0400 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2013-10-16 04:49:54 -0400 |
commit | ebc9abddfb6b930ec54087997570967f062eba4c (patch) | |
tree | 72f8bc503cbbfc25eb3bcbb0cd3a9b5a3ffedc7f /drivers/net/wireless/ath/ath10k/wmi.c | |
parent | e05634ee6c267a0417f72050c378033baca0687a (diff) |
ath10k: do not warn about unsupported vdev param
10.X firmware does not support WMI_VDEV_PARAM_TX_ENCAP_TYPE.
It's a known limitation and we should not warn about this.
Signed-off-by: Bartosz Markowski <bartosz.markowski@tieto.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath10k/wmi.c')
-rw-r--r-- | drivers/net/wireless/ath/ath10k/wmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath10k/wmi.c b/drivers/net/wireless/ath/ath10k/wmi.c index f9766faf15cf..fa0738803899 100644 --- a/drivers/net/wireless/ath/ath10k/wmi.c +++ b/drivers/net/wireless/ath/ath10k/wmi.c | |||
@@ -2763,7 +2763,7 @@ int ath10k_wmi_vdev_set_param(struct ath10k *ar, u32 vdev_id, | |||
2763 | ath10k_dbg(ATH10K_DBG_WMI, | 2763 | ath10k_dbg(ATH10K_DBG_WMI, |
2764 | "vdev param %d not supported by firmware\n", | 2764 | "vdev param %d not supported by firmware\n", |
2765 | param_id); | 2765 | param_id); |
2766 | return -EINVAL; | 2766 | return -EOPNOTSUPP; |
2767 | } | 2767 | } |
2768 | 2768 | ||
2769 | skb = ath10k_wmi_alloc_skb(sizeof(*cmd)); | 2769 | skb = ath10k_wmi_alloc_skb(sizeof(*cmd)); |