| 1 | /* |
| 2 | * Human Monitor 'info sev' stub (CONFIG_SEV) |
| 3 | * |
| 4 | * Copyright (c) Linaro |
| 5 | * |
| 6 | * SPDX-License-Identifier: GPL-2.0-or-later |
| 7 | */ |
| 8 | |
| 9 | #include "qemu/osdep.h" |
| 10 | #include "monitor/hmp.h" |
| 11 | #include "monitor/monitor.h" |
| 12 | |
| 13 | void hmp_info_sev(MonitorHMP *hmp, const QDict *qdict) |
| 14 | { |
| 15 | monitor_hmp_printf(hmp, "SEV is not available in this QEMU\n"); |
| 16 | } |