[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20070726.235735.25909273.anemo@mba.ocn.ne.jp>
Date: Thu, 26 Jul 2007 23:57:35 +0900 (JST)
From: Atsushi Nemoto <anemo@....ocn.ne.jp>
To: linux-kernel@...r.kernel.org
Cc: akpm@...ux-foundation.org, ralf@...ux-mips.org
Subject: [PATCH] serial_txx9: Fix printk format mismatch
Since the commit 4f640efb3170dbcf99a37a3cc99060647b95428c, "%lx" is
not suitable for p->mapbase (resource_size_t) in 32-bit. This patch
fixes a compiler warning caused by the mismatch.
Signed-off-by: Atsushi Nemoto <anemo@....ocn.ne.jp>
---
diff --git a/drivers/serial/serial_txx9.c b/drivers/serial/serial_txx9.c
index 7480dc8..be2ba06 100644
--- a/drivers/serial/serial_txx9.c
+++ b/drivers/serial/serial_txx9.c
@@ -1047,8 +1047,9 @@ static int __devinit serial_txx9_probe(struct platform_device *dev)
ret = serial_txx9_register_port(&port);
if (ret < 0) {
dev_err(&dev->dev, "unable to register port at index %d "
- "(IO%x MEM%lx IRQ%d): %d\n", i,
- p->iobase, p->mapbase, p->irq, ret);
+ "(IO%x MEM%llx IRQ%d): %d\n", i,
+ p->iobase, (unsigned long long)p->mapbase,
+ p->irq, ret);
}
}
return 0;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists