ath10k: fix otp board id error message
authorKalle Valo <kvalo@qca.qualcomm.com>
Wed, 25 Nov 2015 13:38:05 +0000 (15:38 +0200)
committerKalle 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

index 7a59dbb..5743342 100644 (file)
@@ -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;
        }