diff options
author | Peter Oh <poh@qca.qualcomm.com> | 2015-11-20 09:33:14 -0800 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2015-11-30 16:54:42 +0200 |
commit | bd5632b0989b180db1199f7fc6969dd4ca45643d (patch) | |
tree | 5992e7ca171085eda032c5ef070501a0b1423b0d | |
parent | aca146afbc3b9191ca4265e80c60b86dcedeca13 (diff) | |
download | talos-op-linux-bd5632b0989b180db1199f7fc6969dd4ca45643d.tar.gz talos-op-linux-bd5632b0989b180db1199f7fc6969dd4ca45643d.zip |
ath10k: fix board data fetch error message
The error message order of board data fetch is board info,
directory, and then file name, hence place print arguments
in the order.
Fixes: 0a51b343abfe ("ath10k: add board 2 API support")
Signed-off-by: Peter Oh <poh@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
-rw-r--r-- | drivers/net/wireless/ath/ath10k/core.c | 2 |
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 f128adbae454..7a59dbb1b1e2 100644 --- a/drivers/net/wireless/ath/ath10k/core.c +++ b/drivers/net/wireless/ath/ath10k/core.c @@ -849,7 +849,7 @@ out: if (!ar->board_data || !ar->board_len) { ath10k_err(ar, "failed to fetch board data for %s from %s/%s\n", - ar->hw_params.fw.dir, boardname, filename); + boardname, ar->hw_params.fw.dir, filename); ret = -ENODATA; goto err; } |