Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1296749
| From | Andre Przywara <andre.przywara@arm.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [RFC PATCH 1/5] drivers: sunxi-rsb: fix error output type |
| Date | 2015-12-22 13:30 +0100 |
| Message-ID | <qIueK-3Tt-1@gated-at.bofh.it> (permalink) |
| References | <qIueK-3Tt-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
"len" is actually a size_t in this function here, so properly annotate the dev_err printf type to allow compilation for 64-bit architectures. Signed-off-by: Andre Przywara <andre.przywara@arm.com> --- drivers/bus/sunxi-rsb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/bus/sunxi-rsb.c b/drivers/bus/sunxi-rsb.c index 846bc29..7f26bc1d 100644 --- a/drivers/bus/sunxi-rsb.c +++ b/drivers/bus/sunxi-rsb.c @@ -330,7 +330,7 @@ static int sunxi_rsb_read(struct sunxi_rsb *rsb, u8 rtaddr, u8 addr, cmd = RSB_CMD_RD32; break; default: - dev_err(rsb->dev, "Invalid access width: %d\n", len); + dev_err(rsb->dev, "Invalid access width: %zd\n", len); return -EINVAL; } @@ -372,7 +372,7 @@ static int sunxi_rsb_write(struct sunxi_rsb *rsb, u8 rtaddr, u8 addr, cmd = RSB_CMD_WR32; break; default: - dev_err(rsb->dev, "Invalid access width: %d\n", len); + dev_err(rsb->dev, "Invalid access width: %zd\n", len); return -EINVAL; } -- 2.5.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[RFC PATCH 1/5] drivers: sunxi-rsb: fix error output type Andre Przywara <andre.przywara@arm.com> - 2015-12-22 13:30 +0100 Re: [RFC PATCH 1/5] drivers: sunxi-rsb: fix error output type Arnd Bergmann <arnd@arndb.de> - 2015-12-22 23:10 +0100 Re: [RFC PATCH 1/5] drivers: sunxi-rsb: fix error output type Maxime Ripard <maxime.ripard@free-electrons.com> - 2015-12-28 03:50 +0100
csiph-web