diff options
author | Hans Wennborg <hans@hanshq.net> | 2014-08-17 17:57:11 -0400 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2014-08-25 04:20:30 -0400 |
commit | 10d49878971852111b49f59f6f56c3641b691173 (patch) | |
tree | 1853209ed7eb71dd1d4a249c15e14cf89e2e966f /drivers/net/wireless/ath/ath6kl | |
parent | 804eef14790f8917f74945f82db8b55903f76af4 (diff) |
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')
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/init.c | 2 | ||||
-rw-r--r-- | drivers/net/wireless/ath/ath6kl/main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath/ath6kl/init.c b/drivers/net/wireless/ath/ath6kl/init.c index a61118484de6..6340afca9ad3 100644 --- a/drivers/net/wireless/ath/ath6kl/init.c +++ b/drivers/net/wireless/ath/ath6kl/init.c | |||
@@ -1049,7 +1049,7 @@ static int ath6kl_fetch_fw_apin(struct ath6kl *ar, const char *name) | |||
1049 | ar->hw.reserved_ram_size = le32_to_cpup(val); | 1049 | ar->hw.reserved_ram_size = le32_to_cpup(val); |
1050 | 1050 | ||
1051 | ath6kl_dbg(ATH6KL_DBG_BOOT, | 1051 | ath6kl_dbg(ATH6KL_DBG_BOOT, |
1052 | "found reserved ram size ie 0x%d\n", | 1052 | "found reserved ram size ie %d\n", |
1053 | ar->hw.reserved_ram_size); | 1053 | ar->hw.reserved_ram_size); |
1054 | break; | 1054 | break; |
1055 | case ATH6KL_FW_IE_CAPABILITIES: | 1055 | case ATH6KL_FW_IE_CAPABILITIES: |
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) | |||
225 | ret = ath6kl_hif_diag_write32(ar, address, value); | 225 | ret = ath6kl_hif_diag_write32(ar, address, value); |
226 | 226 | ||
227 | if (ret) { | 227 | if (ret) { |
228 | ath6kl_err("failed to write 0x%x during diagnose window to 0x%d\n", | 228 | ath6kl_err("failed to write 0x%x during diagnose window to 0x%x\n", |
229 | address, value); | 229 | address, value); |
230 | return ret; | 230 | return ret; |
231 | } | 231 | } |