From 965537395c7c367bf47f26776c8de18d0e9bd330 Mon Sep 17 00:00:00 2001 From: Faruque Ansari Date: Wed, 23 Sep 2026 11:17:45 +0530 Subject: [PATCH] WORKAROUND: ras: aest: avoid spurious warnings for missing ERI IRQ Several platforms do not provide an optional "eri" interrupt in their AEST device tree nodes. During boot, the driver emits warnings such as: DT AEST: node ...: failed to map ERI IRQ: -61 The absence of an ERI interrupt is not fatal and does not affect normal AEST initialization on these systems. Downgrade the message from pr_warn() to pr_debug() to avoid unnecessary boot-time warning noise. Fixes: 0212efc9a227 ("FROMLIST: ras: aest: Add DT frontend for ARM AEST RAS error sources") Signed-off-by: Faruque Ansari --- drivers/ras/aest/aest-of.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/ras/aest/aest-of.c b/drivers/ras/aest/aest-of.c index 7be85f8bef34d..a4e6096ba7571 100644 --- a/drivers/ras/aest/aest-of.c +++ b/drivers/ras/aest/aest-of.c @@ -229,7 +229,7 @@ static int dt_aest_build_interrupt(struct device_node *np, of_property_read_string_index(np, "interrupt-names", 1, &name); - pr_warn("node %pOF: failed to map ERI IRQ: %d (interrupt-names[1]=\"%s\", want \"%s\")\n", + pr_debug("node %pOF: failed to map ERI IRQ: %d (interrupt-names[1]=\"%s\", want \"%s\")\n", np, eri_irq, name ?: "", "eri"); }