The patch titled ohci1394: shortcut irq printing has been added to the -mm tree. Its filename is ohci1394-shortcut-irq-printing.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: ohci1394: shortcut irq printing From: Alexey Dobriyan <adobriyan@xxxxxxxxx> To print irq number no need to transform to string using %d, then print using %s. Just use %d. Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> Cc: Stefan Richter <stefanr@xxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/ieee1394/ohci1394.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff -puN drivers/ieee1394/ohci1394.c~ohci1394-shortcut-irq-printing drivers/ieee1394/ohci1394.c --- a/drivers/ieee1394/ohci1394.c~ohci1394-shortcut-irq-printing +++ a/drivers/ieee1394/ohci1394.c @@ -468,7 +468,6 @@ static int get_nb_iso_ctx(struct ti_ohci /* Global initialization */ static void ohci_initialize(struct ti_ohci *ohci) { - char irq_buf[16]; quadlet_t buf; int num_ports, i; @@ -586,11 +585,10 @@ static void ohci_initialize(struct ti_oh reg_write(ohci, OHCI1394_HCControlSet, OHCI1394_HCControl_linkEnable); buf = reg_read(ohci, OHCI1394_Version); - sprintf (irq_buf, "%d", ohci->dev->irq); - PRINT(KERN_INFO, "OHCI-1394 %d.%d (PCI): IRQ=[%s] " + PRINT(KERN_INFO, "OHCI-1394 %d.%d (PCI): IRQ=[%d] " "MMIO=[%llx-%llx] Max Packet=[%d] IR/IT contexts=[%d/%d]", ((((buf) >> 16) & 0xf) + (((buf) >> 20) & 0xf) * 10), - ((((buf) >> 4) & 0xf) + ((buf) & 0xf) * 10), irq_buf, + ((((buf) >> 4) & 0xf) + ((buf) & 0xf) * 10), ohci->dev->irq, (unsigned long long)pci_resource_start(ohci->dev, 0), (unsigned long long)pci_resource_start(ohci->dev, 0) + OHCI1394_REGISTER_SIZE - 1, ohci->max_packet_size, _ Patches currently in -mm which might be from adobriyan@xxxxxxxxx are git-gfs2.patch git-ieee1394.patch ohci1394-shortcut-irq-printing.patch git-mtd.patch git-netdev-all.patch parisc-use-unsigned-long-flags-in-semaphore-code.patch megaraid-fix-warnings-when-config_proc_fs=n.patch security-keys-user-kmemdup.patch paride-rename-pi_register-and-pi_unregister.patch paride_register-shuffle-return-values.patch enforce-unsigned-long-flags-when-spinlocking.patch compile-time-check-re-world-writeable-module-params.patch drivers-video-use-kmemdup.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