From: Linus Walleij Date: Tue, 27 Nov 2012 00:20:32 +0000 (+0100) Subject: irqdomain: stop screaming about preallocated irqdescs X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=d202b7b970b2a21278505c2467919fd441a7b6c8;p=deliverable%2Flinux.git irqdomain: stop screaming about preallocated irqdescs In the simple irqdomain: don't shout warnings to the user, there is no point. An informational print is sufficient. Signed-off-by: Linus Walleij Signed-off-by: Grant Likely --- diff --git a/kernel/irq/irqdomain.c b/kernel/irq/irqdomain.c index 4e69e24d3d7d..96f3a1d9c379 100644 --- a/kernel/irq/irqdomain.c +++ b/kernel/irq/irqdomain.c @@ -177,8 +177,8 @@ struct irq_domain *irq_domain_add_simple(struct device_node *of_node, irq_base = irq_alloc_descs(first_irq, first_irq, size, of_node_to_nid(of_node)); if (irq_base < 0) { - WARN(1, "Cannot allocate irq_descs @ IRQ%d, assuming pre-allocated\n", - first_irq); + pr_info("Cannot allocate irq_descs @ IRQ%d, assuming pre-allocated\n", + first_irq); irq_base = first_irq; } } else