Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'irq-urgent-2026-04-05' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip

Pull irq fix from Ingo Molnar:

- Fix RISC-V APLIC irqchip driver setup errors on ACPI systems (Jessica
Liu)

* tag 'irq-urgent-2026-04-05' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
irqchip/riscv-aplic: Restrict genpd notifier to device tree only

+2 -2
+2 -2
drivers/irqchip/irq-riscv-aplic-main.c
··· 150 150 struct device *dev = priv->dev; 151 151 152 152 list_del(&priv->head); 153 - if (dev->pm_domain) 153 + if (dev->pm_domain && dev->of_node) 154 154 dev_pm_genpd_remove_notifier(dev); 155 155 } 156 156 ··· 165 165 166 166 priv->saved_hw_regs.srcs = srcs; 167 167 list_add(&priv->head, &aplics); 168 - if (dev->pm_domain) { 168 + if (dev->pm_domain && dev->of_node) { 169 169 priv->genpd_nb.notifier_call = aplic_pm_notifier; 170 170 ret = dev_pm_genpd_add_notifier(dev, &priv->genpd_nb); 171 171 if (ret)