From: Sascha Hauer <s.hauer@pengutronix.de>
To: barebox@lists.infradead.org
Subject: [PATCH 21/24] mci-core: fix printf compiler warnings
Date: Fri, 7 Jan 2011 11:44:01 +0100 [thread overview]
Message-ID: <1294397044-5008-22-git-send-email-s.hauer@pengutronix.de> (raw)
In-Reply-To: <1294397044-5008-1-git-send-email-s.hauer@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
drivers/mci/mci-core.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/mci/mci-core.c b/drivers/mci/mci-core.c
index 04a1e4c..c562700 100644
--- a/drivers/mci/mci-core.c
+++ b/drivers/mci/mci-core.c
@@ -1001,13 +1001,13 @@ static int mci_sd_read(struct device_d *disk_dev, uint64_t sector_start,
while (sector_count) {
int now = min(sector_count, 32U);
if (sector_start > MAX_BUFFER_NUMBER) {
- pr_err("Cannot handle block number %lu. Too large!\n",
+ pr_err("Cannot handle block number %u. Too large!\n",
(unsigned)sector_start);
return -EINVAL;
}
rc = mci_read_block(mci_dev, buffer, (unsigned)sector_start, now);
if (rc != 0) {
- pr_err("Reading block %lu failed with %d\n", (unsigned)sector_start, rc);
+ pr_err("Reading block %u failed with %d\n", (unsigned)sector_start, rc);
return rc;
}
sector_count -= now;
--
1.7.2.3
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2011-01-07 10:44 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-07 10:43 fix printf related " Sascha Hauer
2011-01-07 10:43 ` [PATCH 01/24] i.MX: fix printf " Sascha Hauer
2011-01-07 10:43 ` [PATCH 02/24] net: " Sascha Hauer
2011-01-07 10:43 ` [PATCH 03/24] fec_imx: " Sascha Hauer
2011-01-07 10:43 ` [PATCH 04/24] nand: " Sascha Hauer
2011-01-07 10:43 ` [PATCH 05/24] cdev: " Sascha Hauer
2011-01-07 10:43 ` [PATCH 06/24] usb: add missing byteorder include Sascha Hauer
2011-01-07 10:43 ` [PATCH 07/24] add to speed Sascha Hauer
2011-01-10 19:49 ` Uwe Kleine-König
2011-01-07 10:43 ` [PATCH 08/24] eukrea_cpuimx35: fix printf compiler warnings Sascha Hauer
2011-01-07 10:43 ` [PATCH 09/24] blackfin: " Sascha Hauer
2011-01-07 10:43 ` [PATCH 10/24] cs8900: " Sascha Hauer
2011-01-07 10:43 ` [PATCH 11/24] dm9000: " Sascha Hauer
2011-01-07 10:43 ` [PATCH 12/24] smc911x: " Sascha Hauer
2011-01-07 10:43 ` [PATCH 13/24] ipe337: " Sascha Hauer
2011-01-07 10:43 ` [PATCH 14/24] device tree: " Sascha Hauer
2011-01-07 10:43 ` [PATCH 15/24] netx: " Sascha Hauer
2011-01-07 10:43 ` [PATCH 16/24] guf-cupid: " Sascha Hauer
2011-01-07 10:43 ` [PATCH 17/24] pcm043: " Sascha Hauer
2011-01-07 10:43 ` [PATCH 18/24] at91: " Sascha Hauer
2011-01-07 10:43 ` [PATCH 19/24] ppc: " Sascha Hauer
2011-01-07 10:44 ` [PATCH 20/24] imx-esdhc: " Sascha Hauer
2011-01-07 10:44 ` Sascha Hauer [this message]
2011-01-07 10:44 ` [PATCH 22/24] imx-ipu-fb: " Sascha Hauer
2011-01-07 10:44 ` [PATCH 23/24] mpc5xxx: " Sascha Hauer
2011-01-07 10:44 ` [PATCH 24/24] i.MX nand: do not select NAND_IMX_BOOT Sascha Hauer
2011-01-07 11:05 ` Juergen Beisert
2011-01-07 11:14 ` Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1294397044-5008-22-git-send-email-s.hauer@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox