projects
/
platform
/
kernel
/
linux-exynos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb58b89
)
ath10k: fix otp board id error message
author
Kalle Valo
<kvalo@qca.qualcomm.com>
Wed, 25 Nov 2015 13:38:05 +0000
(15:38 +0200)
committer
Kalle Valo
<kvalo@qca.qualcomm.com>
Mon, 30 Nov 2015 14:54:53 +0000
(16:54 +0200)
We check board id from all board types, not just qca99x0, so the error message
was misleading.
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath10k/core.c
patch
|
blob
|
history
diff --git
a/drivers/net/wireless/ath/ath10k/core.c
b/drivers/net/wireless/ath/ath10k/core.c
index
7a59dbb
..
5743342
100644
(file)
--- a/
drivers/net/wireless/ath/ath10k/core.c
+++ b/
drivers/net/wireless/ath/ath10k/core.c
@@
-1753,7
+1753,7
@@
static int ath10k_core_probe_fw(struct ath10k *ar)
ret = ath10k_core_get_board_id_from_otp(ar);
if (ret && ret != -EOPNOTSUPP) {
- ath10k_err(ar, "failed to get board id from otp
for qca99x0
: %d\n",
+ ath10k_err(ar, "failed to get board id from otp: %d\n",
ret);
return ret;
}