Commit 310c01af authored by Kalle Valo's avatar Kalle Valo

ath10k: add directory to board data error message

This way user has a better idea what file exactly is missing.
This is needed when we switch to using request_firmware_direct() which doesn't
print any errors anymore.
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 1c61bedc
...@@ -1168,7 +1168,8 @@ static int ath10k_core_fetch_board_file(struct ath10k *ar) ...@@ -1168,7 +1168,8 @@ static int ath10k_core_fetch_board_file(struct ath10k *ar)
ar->bd_api = 1; ar->bd_api = 1;
ret = ath10k_core_fetch_board_data_api_1(ar); ret = ath10k_core_fetch_board_data_api_1(ar);
if (ret) { if (ret) {
ath10k_err(ar, "failed to fetch board data\n"); ath10k_err(ar, "failed to fetch board-2.bin or board.bin from %s\n",
ar->hw_params.fw.dir);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment