Merge tag 'rproc-v6.14' of git://git.kernel.org/pub/scm/linux/kernel/git/remoteproc...
[linux.git] / arch / hexagon / kernel / reset.c
blobefd70a8d25265ef35a1200dd3c073c30fd6de157
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Copyright (c) 2010-2011, The Linux Foundation. All rights reserved.
4 */
6 #include <linux/reboot.h>
7 #include <linux/smp.h>
8 #include <asm/hexagon_vm.h>
10 void machine_power_off(void)
12 smp_send_stop();
13 __vmstop();
16 void machine_halt(void)
20 void machine_restart(char *cmd)
24 void (*pm_power_off)(void) = NULL;
25 EXPORT_SYMBOL(pm_power_off);