mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
kernel/irq/manage.c: replace a printk + WARN_ON() to a WARN()
Replace a printk+WARN_ON() by a WARN(); this increases the chance of the string making it into the bugreport (ie: it goes inside the ---[ cut here ]--- section) Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Ingo Molnar <mingo@elte.hu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
a8f18b909c
commit
7a2c477069
@ -260,9 +260,7 @@ int set_irq_wake(unsigned int irq, unsigned int on)
|
||||
}
|
||||
} else {
|
||||
if (desc->wake_depth == 0) {
|
||||
printk(KERN_WARNING "Unbalanced IRQ %d "
|
||||
"wake disable\n", irq);
|
||||
WARN_ON(1);
|
||||
WARN(1, "Unbalanced IRQ %d wake disable\n", irq);
|
||||
} else if (--desc->wake_depth == 0) {
|
||||
ret = set_irq_wake_real(irq, on);
|
||||
if (ret)
|
||||
|
Loading…
Reference in New Issue
Block a user