mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 16:46:23 +08:00
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: Mike Travis <travis@sgi.com>
This commit is contained in:
parent
9594949b06
commit
e2f4d06545
@ -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",
|
||||
irq, nr_irqs);
|
||||
WARN_ON(1);
|
||||
WARN(1, "irq (%d) >= nr_irqs (%d) in irq_to_desc_alloc\n",
|
||||
irq, nr_irqs);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user