* [PATCH] ath6kl: fix size_t related warnings
@ 2011-10-01 6:52 Kalle Valo
2011-10-01 10:17 ` Kalle Valo
0 siblings, 1 reply; 2+ messages in thread
From: Kalle Valo @ 2011-10-01 6:52 UTC (permalink / raw)
To: kvalo; +Cc: linux-wireless
My earlier debug log additions added these warnings when compiling 64 bit
kernels:
ath6kl/init.c:962: warning: format ‘%d’ expects type ‘int’,
but argument 3 has type ‘size_t’
ath6kl/init.c:975: warning: format ‘%d’ expects type ‘int’,
but argument 3 has type ‘size_t’
ath6kl/init.c:988: warning: format ‘%d’ expects type ‘int’,
but argument 3 has type ‘size_t’
ath6kl/init.c:1009: warning: format ‘%d’ expects type ‘int’,
but argument 3 has type ‘size_t’
ath6kl/init.c:1192: warning: format ‘%d’ expects type ‘int’,
but argument 4 has type ‘size_t’
ath6kl/init.c:1236: warning: format ‘%d’ expects type ‘int’,
but argument 4 has type ‘size_t’
ath6kl/init.c:1267: warning: format ‘%d’ expects type ‘int’,
but argument 4 has type ‘size_t’
Reported-by: Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
---
drivers/net/wireless/ath/ath6kl/init.c | 14 +++++++-------
1 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/drivers/net/wireless/ath/ath6kl/init.c b/drivers/net/wireless/ath/ath6kl/init.c
index 5995bb9..c1d2366 100644
--- a/drivers/net/wireless/ath/ath6kl/init.c
+++ b/drivers/net/wireless/ath/ath6kl/init.c
@@ -959,7 +959,7 @@ static int ath6kl_fetch_fw_api2(struct ath6kl *ar)
switch (ie_id) {
case ATH6KL_FW_IE_OTP_IMAGE:
- ath6kl_dbg(ATH6KL_DBG_BOOT, "found otp image ie (%d B)\n",
+ ath6kl_dbg(ATH6KL_DBG_BOOT, "found otp image ie (%zd B)\n",
ie_len);
ar->fw_otp = kmemdup(data, ie_len, GFP_KERNEL);
@@ -972,7 +972,7 @@ static int ath6kl_fetch_fw_api2(struct ath6kl *ar)
ar->fw_otp_len = ie_len;
break;
case ATH6KL_FW_IE_FW_IMAGE:
- ath6kl_dbg(ATH6KL_DBG_BOOT, "found fw image ie (%d B)\n",
+ ath6kl_dbg(ATH6KL_DBG_BOOT, "found fw image ie (%zd B)\n",
ie_len);
ar->fw = kmemdup(data, ie_len, GFP_KERNEL);
@@ -985,7 +985,7 @@ static int ath6kl_fetch_fw_api2(struct ath6kl *ar)
ar->fw_len = ie_len;
break;
case ATH6KL_FW_IE_PATCH_IMAGE:
- ath6kl_dbg(ATH6KL_DBG_BOOT, "found patch image ie (%d B)\n",
+ ath6kl_dbg(ATH6KL_DBG_BOOT, "found patch image ie (%zd B)\n",
ie_len);
ar->fw_patch = kmemdup(data, ie_len, GFP_KERNEL);
@@ -1007,7 +1007,7 @@ static int ath6kl_fetch_fw_api2(struct ath6kl *ar)
break;
case ATH6KL_FW_IE_CAPABILITIES:
ath6kl_dbg(ATH6KL_DBG_BOOT,
- "found firmware capabilities ie (%d B)\n",
+ "found firmware capabilities ie (%zd B)\n",
ie_len);
for (i = 0; i < ATH6KL_FW_CAPABILITY_MAX; i++) {
@@ -1189,7 +1189,7 @@ static int ath6kl_upload_otp(struct ath6kl *ar)
address = ar->hw.app_load_addr;
- ath6kl_dbg(ATH6KL_DBG_BOOT, "writing otp to 0x%x (%d B)\n", address,
+ ath6kl_dbg(ATH6KL_DBG_BOOT, "writing otp to 0x%x (%zd B)\n", address,
ar->fw_otp_len);
ret = ath6kl_bmi_fast_download(ar, address, ar->fw_otp,
@@ -1233,7 +1233,7 @@ static int ath6kl_upload_firmware(struct ath6kl *ar)
address = ar->hw.app_load_addr;
- ath6kl_dbg(ATH6KL_DBG_BOOT, "writing firmware to 0x%x (%d B)\n",
+ ath6kl_dbg(ATH6KL_DBG_BOOT, "writing firmware to 0x%x (%zd B)\n",
address, ar->fw_len);
ret = ath6kl_bmi_fast_download(ar, address, ar->fw, ar->fw_len);
@@ -1264,7 +1264,7 @@ static int ath6kl_upload_patch(struct ath6kl *ar)
address = ar->hw.dataset_patch_addr;
- ath6kl_dbg(ATH6KL_DBG_BOOT, "writing patch to 0x%x (%d B)\n",
+ ath6kl_dbg(ATH6KL_DBG_BOOT, "writing patch to 0x%x (%zd B)\n",
address, ar->fw_patch_len);
ret = ath6kl_bmi_write(ar, address, ar->fw_patch, ar->fw_patch_len);
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] ath6kl: fix size_t related warnings
2011-10-01 6:52 [PATCH] ath6kl: fix size_t related warnings Kalle Valo
@ 2011-10-01 10:17 ` Kalle Valo
0 siblings, 0 replies; 2+ messages in thread
From: Kalle Valo @ 2011-10-01 10:17 UTC (permalink / raw)
To: Kalle Valo; +Cc: linux-wireless
On 10/01/2011 09:52 AM, Kalle Valo wrote:
> My earlier debug log additions added these warnings when compiling 64 bit
> kernels:
>
> ath6kl/init.c:962: warning: format ‘%d’ expects type ‘int’,
> but argument 3 has type ‘size_t’
> ath6kl/init.c:975: warning: format ‘%d’ expects type ‘int’,
> but argument 3 has type ‘size_t’
> ath6kl/init.c:988: warning: format ‘%d’ expects type ‘int’,
> but argument 3 has type ‘size_t’
> ath6kl/init.c:1009: warning: format ‘%d’ expects type ‘int’,
> but argument 3 has type ‘size_t’
> ath6kl/init.c:1192: warning: format ‘%d’ expects type ‘int’,
> but argument 4 has type ‘size_t’
> ath6kl/init.c:1236: warning: format ‘%d’ expects type ‘int’,
> but argument 4 has type ‘size_t’
> ath6kl/init.c:1267: warning: format ‘%d’ expects type ‘int’,
> but argument 4 has type ‘size_t’
Applied.
Kalle
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-10-01 10:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-01 6:52 [PATCH] ath6kl: fix size_t related warnings Kalle Valo
2011-10-01 10:17 ` Kalle Valo
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).