blob: 62998809529fc667f08231a92fe3bbfaf501aae8 [file] [log] [blame]
#include "hf/arch/vm/shutdown.h"
#include "vmapi/hf/call.h"
#include "../psci.h"
/*
* Shutdown the system or exit emulation.
*/
noreturn void shutdown(void)
{
hf_call(PSCI_SYSTEM_OFF, 0, 0, 0);
for (;;) {
/* This should never be reached. */
}
}