The patch titled korg1212: fix printk format warning has been added to the -mm tree. Its filename is korg1212-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: korg1212: fix printk format warning From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> sound/pci/korg1212/korg1212.c:2359: warning: format '%d' expects type 'int', but argument 4 has type 'size_t' Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Cc: Jaroslav Kysela <perex@xxxxxxx> Cc: Takashi Iwai <tiwai@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- sound/pci/korg1212/korg1212.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN sound/pci/korg1212/korg1212.c~korg1212-fix-printk-format-warning sound/pci/korg1212/korg1212.c --- a/sound/pci/korg1212/korg1212.c~korg1212-fix-printk-format-warning +++ a/sound/pci/korg1212/korg1212.c @@ -2356,7 +2356,7 @@ static int __devinit snd_korg1212_create if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci), dsp_code->size, &korg1212->dma_dsp) < 0) { - snd_printk(KERN_ERR "korg1212: can not allocate dsp code memory (%d bytes)\n", dsp_code->size); + snd_printk(KERN_ERR "korg1212: cannot allocate dsp code memory (%zd bytes)\n", dsp_code->size); snd_korg1212_free(korg1212); #ifdef FIRMWARE_IN_THE_KERNEL if (dsp_code != &static_dsp_code) _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are origin.patch debugfs-add-header-file.patch git-acpi.patch korg1212-fix-printk-format-warning.patch cpufreq-select-consistently-re-2619-rc5-mm1.patch git-ieee1394.patch git-infiniband.patch mtd-fix-printk-format-warning.patch git-ocfs2.patch parisc-fix-module_param-iommu-permission.patch fuse-fix-compile-without-config_block.patch tifm-fix-null-ptr-and-style.patch kconfig-printk_time-depends-on-printk.patch visws-sgivwfb-is-module-needs-exports.patch extend-notifier_call_chain-to-count-nr_calls-made-fixes.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