1 /*
2  * Copyright 2020 The Hafnium Authors.
3  *
4  * 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.
7  */
8 
9 #include "hf/arch/vm/power_mgmt.h"
10 
11 #include "test/hftest.h"
12 
hftest_device_reboot(void)13 noreturn void hftest_device_reboot(void)
14 {
15 	arch_reboot();
16 }
17 
hftest_device_exit_test_environment(void)18 void hftest_device_exit_test_environment(void)
19 {
20 	HFTEST_LOG("%s not supported", __func__);
21 }
22