Subject: spufs: don't warn about old device nodes when probing spus This message was getting a little too noisy on our current firmware. Signed-off-by: Arnd Bergmann Index: linux-2.6/arch/powerpc/platforms/cell/spu_base.c =================================================================== --- linux-2.6.orig/arch/powerpc/platforms/cell/spu_base.c +++ linux-2.6/arch/powerpc/platforms/cell/spu_base.c @@ -667,7 +667,7 @@ static int __init spu_map_interrupts(str return 0; err: - pr_info("failed to map irq %x for spu %s\n", *oirq.specifier, spu->name); + pr_debug("failed to map irq %x for spu %s\n", *oirq.specifier, spu->name); for (; i >= 0; i--) { if (spu->irqs[i] != NO_IRQ) irq_dispose_mapping(spu->irqs[i]); @@ -725,7 +725,7 @@ static int __init spu_map_device(struct out_unmap: spu_unmap(spu); out: - pr_info("failed to map spe %s: %d\n", spu->name, ret); + pr_debug("failed to map spe %s: %d\n", spu->name, ret); return ret; }