Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e2f4d065 authored by Mike Travis's avatar Mike Travis Committed by Ingo Molnar
Browse files

irq: use WARN() instead of WARN_ON().



Impact: cleanup WARN msg.

Ingo requested:
> While at it, could you please also convert this to a WARN() construct
> instead? (in a separate commit)

... and it shall be done.  ;-)

Signed-off-by: default avatarMike Travis <travis@sgi.com>
parent 9594949b
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -163,9 +163,8 @@ struct irq_desc *irq_to_desc_alloc_cpu(unsigned int irq, int cpu)
	int node;

	if (irq >= nr_irqs) {
		printk(KERN_WARNING "irq >= nr_irqs in irq_to_desc_alloc: %d %d\n",
		WARN(1, "irq (%d) >= nr_irqs (%d) in irq_to_desc_alloc\n",
			irq, nr_irqs);
		WARN_ON(1);
		return NULL;
	}