[PATCH] gpio: ep93xx: use handle_bad_irq() as default IRQ handler

From: Mohamed Ayman

Date: Fri Apr 24 2026 - 08:01:25 EST


Replace the temporary fallback handle_simple_irq with handle_bad_irq
now that the driver operates with a proper hierarchical IRQ setup.
This ensures unexpected or unmapped interrupts are clearly flagged
instead of being silently handled.

Signed-off-by: Mohamed Ayman <mohamedaymanworkspace@xxxxxxxxx>
---
drivers/gpio/gpio-ep93xx.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/gpio/gpio-ep93xx.c b/drivers/gpio/gpio-ep93xx.c
index 1f56e44ffc9a..8784e433e1ff 100644
--- a/drivers/gpio/gpio-ep93xx.c
+++ b/drivers/gpio/gpio-ep93xx.c
@@ -323,8 +323,7 @@ static int ep93xx_setup_irqs(struct platform_device *pdev,
}

girq->default_type = IRQ_TYPE_NONE;
- /* TODO: replace with handle_bad_irq() once we are fully hierarchical */
- girq->handler = handle_simple_irq;
+ girq->handler = handle_bad_irq;

return 0;
}
--
2.34.1