Skip to content

Commit

Permalink
ath10k: fix otp board id error message
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Kalle Valo committed Nov 30, 2015
1 parent bb58b89 commit b091f36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/ath/ath10k/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit b091f36

Please sign in to comment.