[PATCH v2 3/5] microblaze: reset: Call POWER_OFF handlers
From: Thomas Weißschuh
Date: Sun Sep 13 2026 - 19:51:18 EST
System power off might be implemented through sys_off handlers.
Currently these are not respected on microblaze.
On power_off call into the generic power off function which will execute
all regustered handlers.
Signed-off-by: Thomas Weißschuh <linux@xxxxxxxxxxxxxx>
Acked-by: David Gow <david@xxxxxxxxxxxx>
---
arch/microblaze/kernel/reset.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/arch/microblaze/kernel/reset.c b/arch/microblaze/kernel/reset.c
index 2f66c7963084..774bc1f79119 100644
--- a/arch/microblaze/kernel/reset.c
+++ b/arch/microblaze/kernel/reset.c
@@ -28,6 +28,7 @@ void machine_halt(void)
void machine_power_off(void)
{
pr_notice("Machine power off...\n");
+ do_kernel_power_off();
while (1)
;
}
--
2.55.0