The patch titled sparc: resource warning fix has been removed from the -mm tree. Its filename is sparc-resource-warning-fixes.patch This patch was dropped because it was folded into sparc-i8042-build-fix.patch ------------------------------------------------------ Subject: sparc: resource warning fix From: Andrew Morton <akpm@xxxxxxxx> sound/sparc/amd7930.c: In function 'amd7930_attach_common': sound/sparc/amd7930.c:1040: warning: format '%08lx' expects type 'long unsigned int', but argument 5 has type 'resource_size_t' Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- sound/sparc/amd7930.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN sound/sparc/amd7930.c~sparc-resource-warning-fixes sound/sparc/amd7930.c --- a/sound/sparc/amd7930.c~sparc-resource-warning-fixes +++ a/sound/sparc/amd7930.c @@ -1033,10 +1033,10 @@ static int __init amd7930_attach_common( strcpy(card->driver, "AMD7930"); strcpy(card->shortname, "Sun AMD7930"); - sprintf(card->longname, "%s at 0x%02lx:0x%08lx, irq %d", + sprintf(card->longname, "%s at 0x%02lx:0x%08Lx, irq %d", card->shortname, rp->flags & 0xffL, - rp->start, + (unsigned long long)rp->start, irq); if ((err = snd_amd7930_create(card, rp, _ Patches currently in -mm which might be from akpm@xxxxxxxx are origin.patch genirq-ia64-cleanup.patch zvc-zone_reclaim-leave-1%-of-unmapped-pagecache-pages-for-file-i-o.patch make-more-file_operation-structs-static.patch sparc-i8042-build-fix.patch sparc-resource-warning-fixes.patch sparc-resource-warning-fixes-2.patch lockdep-add-disable-enable_irq_lockdep-api.patch lockdep-irqtrace-subsystem-x86_64-support.patch forcedeth-typecast-cleanup.patch sched-clean-up-fallout-of-recent-changes.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