The patch titled ioc4: fix printk format warning has been added to the -mm tree. Its filename is ioc4-fix-printk-format-warning.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: ioc4: fix printk format warning From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix printk format warning: drivers/misc/ioc4.c:213: warning: long long int format, u64 arg (arg 3) Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Acked-by: Brent Casavant <bcasavan@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/misc/ioc4.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/misc/ioc4.c~ioc4-fix-printk-format-warning drivers/misc/ioc4.c --- a/drivers/misc/ioc4.c~ioc4-fix-printk-format-warning +++ a/drivers/misc/ioc4.c @@ -210,8 +210,8 @@ ioc4_clock_calibrate(struct ioc4_driver_ do_div(ns, IOC4_EXTINT_COUNT_DIVISOR); printk(KERN_DEBUG - "IOC4 %s: PCI clock is %lld ns.\n", - pci_name(idd->idd_pdev), ns); + "IOC4 %s: PCI clock is %llu ns.\n", + pci_name(idd->idd_pdev), (unsigned long long)ns); } /* Remember results. We store the extint clock period rather _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are origin.patch ext4-fix-printk-format-warnings.patch md-fix-printk-format-warnings-seen-on-powerpc64.patch acpi-make-ec_transaction-not-extern.patch ioc4-fix-printk-format-warning.patch pvrusb2-use-null-instead-of-0.patch git-ieee1394.patch mtd-fix-kernel-doc-warnings.patch com20020-build-fix.patch parisc-fix-module_param-iommu-permission.patch pci-i386-style-cleanups.patch tifm-fix-null-ptr-and-style.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