blob: b27338f2b670e17adf2430e1a42b26ae7571498c [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
13noreturn void hftest_device_reboot(void)
14{
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}