David Brazdil | 6e8376e | 2020-01-31 16:32:38 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2020 The Hafnium Authors. |
| 3 | * |
Andrew Walbran | e959ec1 | 2020-06-17 15:01:09 +0100 | [diff] [blame] | 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. |
David Brazdil | 6e8376e | 2020-01-31 16:32:38 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include "hf/arch/vm/power_mgmt.h" |
| 10 | |
| 11 | #include "test/hftest.h" |
| 12 | |
| 13 | noreturn void hftest_device_reboot(void) |
| 14 | { |
| 15 | arch_reboot(); |
| 16 | } |
David Brazdil | 88333cb | 2020-01-31 17:12:30 +0000 | [diff] [blame] | 17 | |
| 18 | void hftest_device_exit_test_environment(void) |
| 19 | { |
| 20 | HFTEST_LOG("%s not supported", __func__); |
| 21 | } |