summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMohammed Shafi Shajakhan <mohammed@qti.qualcomm.com>2016-06-30 15:24:01 +0300
committerKalle Valo <kvalo@qca.qualcomm.com>2016-07-08 09:53:44 +0300
commitce30c4fe1a229bffab3fe3594306f332e120c199 (patch)
tree071e0abcc2cdfa3f03ecef2e24299ec2a270e50c
parente565c3125e03bb4d3fe99d98d7e3f511e1073f06 (diff)
downloadlinux-stable-ce30c4fe1a229bffab3fe3594306f332e120c199.tar.gz
linux-stable-ce30c4fe1a229bffab3fe3594306f332e120c199.tar.bz2
linux-stable-ce30c4fe1a229bffab3fe3594306f332e120c199.zip
ath10k: replace warning with an error message if HTT op version is unset
Print an ath10k error message rather a call trace when HTT op version is not found from firmware META data (IE). This should be sufficient to figure out what went wrong. Signed-off-by: Mohammed Shafi Shajakhan <mohammed@qti.qualcomm.com> Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
-rw-r--r--drivers/net/wireless/ath/ath10k/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath10k/core.c b/drivers/net/wireless/ath/ath10k/core.c
index e48eefda2387..fa6a0f9a15f5 100644
--- a/drivers/net/wireless/ath/ath10k/core.c
+++ b/drivers/net/wireless/ath/ath10k/core.c
@@ -1697,7 +1697,7 @@ static int ath10k_core_init_firmware_features(struct ath10k *ar)
case ATH10K_FW_WMI_OP_VERSION_10_4:
case ATH10K_FW_WMI_OP_VERSION_UNSET:
case ATH10K_FW_WMI_OP_VERSION_MAX:
- WARN_ON(1);
+ ath10k_err(ar, "htt op version not found from fw meta data");
return -EINVAL;
}
}