blob: d14602679102b7baefae7b95909de12b6c161cb1 [file] [log] [blame]
David Brazdil6e8376e2020-01-31 16:32:38 +00001/*
2 * Copyright 2020 The Hafnium Authors.
3 *
Andrew Walbrane959ec12020-06-17 15:01:09 +01004 * Use of this source code is governed by a BSD-style
5 * license that can be found in the LICENSE file or at
6 * https://opensource.org/licenses/BSD-3-Clause.
David Brazdil6e8376e2020-01-31 16:32:38 +00007 */
8
9#include "hf/arch/vm/power_mgmt.h"
10
11#include "test/hftest.h"
12
Karl Meakin1923faf2025-03-19 14:54:52 +000013[[noreturn]] void hftest_device_reboot(void)
David Brazdil6e8376e2020-01-31 16:32:38 +000014{
15 arch_reboot();
16}
David Brazdil88333cb2020-01-31 17:12:30 +000017
18void hftest_device_exit_test_environment(void)
19{
20 HFTEST_LOG("%s not supported", __func__);
21}