diff options
author | Hans Wennborg <hans@hanshq.net> | 2014-08-17 14:57:11 -0700 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2014-08-25 11:20:30 +0300 |
commit | 10d49878971852111b49f59f6f56c3641b691173 (patch) | |
tree | 1853209ed7eb71dd1d4a249c15e14cf89e2e966f /drivers/net/wireless/ath/ath6kl/main.c | |
parent | 804eef14790f8917f74945f82db8b55903f76af4 (diff) | |
download | linux-10d49878971852111b49f59f6f56c3641b691173.tar.gz linux-10d49878971852111b49f59f6f56c3641b691173.tar.bz2 linux-10d49878971852111b49f59f6f56c3641b691173.zip |
ath6kl: fix %d confusingly prefixed with 0x in format strings
Signed-off-by: Hans Wennborg <hans@hanshq.net>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath6kl/main.c')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/main.c b/drivers/net/wireless/ath/ath6kl/main.c index 21516bc65785..933aef025698 100644 --- a/drivers/net/wireless/ath/ath6kl/main.c +++ b/drivers/net/wireless/ath/ath6kl/main.c @@ -225,7 +225,7 @@ int ath6kl_diag_write32(struct ath6kl *ar, u32 address, __le32 value) ret = ath6kl_hif_diag_write32(ar, address, value); if (ret) { - ath6kl_err("failed to write 0x%x during diagnose window to 0x%d\n", + ath6kl_err("failed to write 0x%x during diagnose window to 0x%x\n", address, value); return ret; } |