The patch titled serial_txx9: fix printk format mismatch has been added to the -mm tree. Its filename is serial_txx9-fix-printk-format-mismatch.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: serial_txx9: fix printk format mismatch From: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> 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@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/serial/serial_txx9.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff -puN drivers/serial/serial_txx9.c~serial_txx9-fix-printk-format-mismatch drivers/serial/serial_txx9.c --- a/drivers/serial/serial_txx9.c~serial_txx9-fix-printk-format-mismatch +++ a/drivers/serial/serial_txx9.c @@ -1060,8 +1060,9 @@ static int __devinit serial_txx9_probe(s 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; _ Patches currently in -mm which might be from anemo@xxxxxxxxxxxxx are origin.patch serial_txx9-fix-printk-format-mismatch.patch serial_txx9-fix-modem-control-line-handling.patch serial_txx9-cleanup-includes.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html