diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2012-11-26 19:20:32 -0500 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2012-11-30 04:02:35 -0500 |
commit | d202b7b970b2a21278505c2467919fd441a7b6c8 (patch) | |
tree | 4652028e2fcd0fc0f76baeb889cca35723f887ed | |
parent | 9489e9dcae718d5fde988e4a684a0f55b5f94d17 (diff) |
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 <linus.walleij@linaro.org>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
-rw-r--r-- | kernel/irq/irqdomain.c | 4 |
1 files changed, 2 insertions, 2 deletions
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, | |||
177 | irq_base = irq_alloc_descs(first_irq, first_irq, size, | 177 | irq_base = irq_alloc_descs(first_irq, first_irq, size, |
178 | of_node_to_nid(of_node)); | 178 | of_node_to_nid(of_node)); |
179 | if (irq_base < 0) { | 179 | if (irq_base < 0) { |
180 | WARN(1, "Cannot allocate irq_descs @ IRQ%d, assuming pre-allocated\n", | 180 | pr_info("Cannot allocate irq_descs @ IRQ%d, assuming pre-allocated\n", |
181 | first_irq); | 181 | first_irq); |
182 | irq_base = first_irq; | 182 | irq_base = first_irq; |
183 | } | 183 | } |
184 | } else | 184 | } else |