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

Commit 2204bd36 authored by Prateek Sood's avatar Prateek Sood Committed by Gerrit - the friendly Code Review server
Browse files

irqchip: gicv3: add hardware irq print in gic_show_resume_irq()



Currently gic_show_resume_irq() only prints linux irq number.
There are cases where linux irq number is not listed in
cat /proc/interrupts output. To check for spurious irq cases,
hardware irq number can help.

Change-Id: I03005412688041d7ec99a80b741c16e31db3394d
Signed-off-by: default avatarPrateek Sood <prsood@codeaurora.org>
parent 38b1718d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -609,7 +609,8 @@ static void gic_show_resume_irq(struct gic_chip_data *gic)
		else if (desc->action && desc->action->name)
			name = desc->action->name;

		pr_warn("%s: %d triggered %s\n", __func__, irq, name);
		pr_warn("%s: irq:%d hwirq:%u triggered %s\n",
			 __func__, irq, i, name);
	}
}