]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ath10k: do not warn about unsupported vdev param
authorBartosz Markowski <bartosz.markowski@tieto.com>
Tue, 15 Oct 2013 07:26:20 +0000 (09:26 +0200)
committerKalle Valo <kvalo@qca.qualcomm.com>
Wed, 16 Oct 2013 08:49:54 +0000 (11:49 +0300)
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>
drivers/net/wireless/ath/ath10k/mac.c
drivers/net/wireless/ath/ath10k/wmi.c

index 049eca2eb0c9595f3b2ae67d6ec16a9441e61454..97d7111be721fb7b18b771fadcafad3a3f3ed911 100644 (file)
@@ -2085,7 +2085,8 @@ static int ath10k_add_interface(struct ieee80211_hw *hw,
        vdev_param = ar->wmi.vdev_param->tx_encap_type;
        ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
                                        ATH10K_HW_TXRX_NATIVE_WIFI);
-       if (ret)
+       /* 10.X firmware does not support this VDEV parameter. Do not warn */
+       if (ret && ret != -EOPNOTSUPP)
                ath10k_warn("Failed to set TX encap: %d\n", ret);
 
        if (arvif->vdev_type == WMI_VDEV_TYPE_AP) {
index f9766faf15cfa464cb7dd594f0dd3f26e75a1dc2..fa0738803899176ef48a7840091b49a3d5eb1693 100644 (file)
@@ -2763,7 +2763,7 @@ int ath10k_wmi_vdev_set_param(struct ath10k *ar, u32 vdev_id,
                ath10k_dbg(ATH10K_DBG_WMI,
                           "vdev param %d not supported by firmware\n",
                            param_id);
-               return -EINVAL;
+               return -EOPNOTSUPP;
        }
 
        skb = ath10k_wmi_alloc_skb(sizeof(*cmd));