Skip to content

Commit fa3ade5

Browse files
committed
Merge tag 'irq-urgent-2025-11-15' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull irq fix from Ingo Molnar: "Fix an irqchip driver release bug in the riscv-intc irqchip driver" * tag 'irq-urgent-2025-11-15' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: irqchip/riscv-intc: Add missing free() callback in riscv_intc_domain_ops
2 parents e256f7b + 14473a1 commit fa3ade5

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

drivers/irqchip/irq-riscv-intc.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ static int riscv_intc_domain_alloc(struct irq_domain *domain,
166166
static const struct irq_domain_ops riscv_intc_domain_ops = {
167167
.map = riscv_intc_domain_map,
168168
.xlate = irq_domain_xlate_onecell,
169-
.alloc = riscv_intc_domain_alloc
169+
.alloc = riscv_intc_domain_alloc,
170+
.free = irq_domain_free_irqs_top,
170171
};
171172

172173
static struct fwnode_handle *riscv_intc_hwnode(void)

0 commit comments

Comments
 (0)