diff options
author | 2022-05-10 02:32:13 +0300 | |
---|---|---|
committer | 2022-05-19 19:30:30 +0200 | |
commit | 2b6aa7332f8020dfdaffe340ff038aac4df35238 (patch) | |
tree | 7a9b30b1547ca8db4f0d1493b12c0e72c3eae649 /include/linux/reboot.h | |
parent | kernel/reboot: Wrap legacy power-off callbacks into sys-off handlers (diff) | |
download | wireguard-linux-2b6aa7332f8020dfdaffe340ff038aac4df35238.tar.xz wireguard-linux-2b6aa7332f8020dfdaffe340ff038aac4df35238.zip |
kernel/reboot: Add do_kernel_power_off()
Add do_kernel_power_off() helper that will remove open-coded pm_power_off
invocations from the architecture code. This is the first step on the way
to remove the global pm_power_off variable, which will allow us to
implement consistent power-off chaining support.
Signed-off-by: Dmitry Osipenko <dmitry.osipenko@collabora.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/linux/reboot.h')
-rw-r--r-- | include/linux/reboot.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/reboot.h b/include/linux/reboot.h index b79f8942ea5f..99a9753e77bc 100644 --- a/include/linux/reboot.h +++ b/include/linux/reboot.h @@ -63,6 +63,8 @@ extern void machine_shutdown(void); struct pt_regs; extern void machine_crash_shutdown(struct pt_regs *); +void do_kernel_power_off(void); + /* * sys-off handler API. */ |