]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
irqchip/renesas-rzv2h: Fix error path in rzv2h_icu_probe_common()
authorBiju Das <biju.das.jz@bp.renesas.com>
Mon, 23 Mar 2026 12:49:14 +0000 (12:49 +0000)
committerThomas Gleixner <tglx@kernel.org>
Thu, 26 Mar 2026 15:12:01 +0000 (16:12 +0100)
Replace pm_runtime_put() with pm_runtime_put_sync() when
irq_domain_create_hierarchy() fails to ensure the device suspends
synchronously before devres cleanup disables runtime PM via
pm_runtime_disable().

Fixes: 5ec8cabc3b86 ("irqchip/renesas-rzv2h: Use devm_pm_runtime_enable()")
Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Link: https://patch.msgid.link/20260323124917.41602-1-biju.das.jz@bp.renesas.com
drivers/irqchip/irq-renesas-rzv2h.c

index da2bc43a0e122bcd1c53ed00a557e8788c178ddc..03e93b061edde1ad746ebf7fccd0804cd3ccbd18 100644 (file)
@@ -621,7 +621,7 @@ static int rzv2h_icu_probe_common(struct platform_device *pdev, struct device_no
        return 0;
 
 pm_put:
-       pm_runtime_put(&pdev->dev);
+       pm_runtime_put_sync(&pdev->dev);
 
        return ret;
 }