We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd2088d commit d86aacaCopy full SHA for d86aaca
drivers/irqchip/qcom-irq-combiner.c
@@ -1,4 +1,4 @@
1
-/* Copyright (c) 2015-2016, The Linux Foundation. All rights reserved.
+/* Copyright (c) 2015-2018, The Linux Foundation. All rights reserved.
2
*
3
* This program is free software; you can redistribute it and/or modify
4
* it under the terms of the GNU General Public License version 2 and
@@ -68,7 +68,7 @@ static void combiner_handle_irq(struct irq_desc *desc)
68
69
bit = readl_relaxed(combiner->regs[reg].addr);
70
status = bit & combiner->regs[reg].enabled;
71
- if (!status)
+ if (bit && !status)
72
pr_warn_ratelimited("Unexpected IRQ on CPU%d: (%08x %08lx %p)\n",
73
smp_processor_id(), bit,
74
combiner->regs[reg].enabled,
0 commit comments