summary refs log tree commit diff
diff options
context:
space:
mode:
authorStanislaw Gruszka <sgruszka@redhat.com>2016-08-25 17:05:16 +0200
committerKalle Valo <kvalo@codeaurora.org>2016-09-03 20:03:25 +0300
commitfd3fbb65cab86c07f5881ccb919a440497c0960d (patch)
tree3567163fcd8866eccc33c8b1ee5933d35a93beee
parentc5aa9541818a1aacf05ab9a30c3f525841cdc1c9 (diff)
downloadlinux-fd3fbb65cab86c07f5881ccb919a440497c0960d.tar.gz
mwifiex: make "PCI-E is not the winner" print more informative
Printing ret and adapter->winner do not provide any useful information
as those are always 0 at point where the massage is printed. Print value
read from reg->fw_status register instead.

Stanislaw Gruszka <sgruszka@redhat.com>

Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
-rw-r--r--drivers/net/wireless/marvell/mwifiex/pcie.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/wireless/marvell/mwifiex/pcie.c b/drivers/net/wireless/marvell/mwifiex/pcie.c
index 453ab6ad4784..8abbbfe41785 100644
--- a/drivers/net/wireless/marvell/mwifiex/pcie.c
+++ b/drivers/net/wireless/marvell/mwifiex/pcie.c
@@ -2074,8 +2074,7 @@ mwifiex_check_winner_status(struct mwifiex_adapter *adapter)
 		adapter->winner = 1;
 	} else {
 		mwifiex_dbg(adapter, ERROR,
-			    "PCI-E is not the winner <%#x,%d>, exit dnld\n",
-			    ret, adapter->winner);
+			    "PCI-E is not the winner <%#x>", winner);
 	}
 
 	return ret;