master
c 21 lines 579 Bytes
Raw
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2
3 #include "qemu/osdep.h"
4 #include "qapi/error.h"
5 #include "qapi/qapi-commands-machine.h"
6
7 CpuModelExpansionInfo *
8 qmp_query_cpu_model_expansion(CpuModelExpansionType type,
9 CpuModelInfo *model,
10 Error **errp)
11 {
12 error_setg(errp, "CPU model expansion is not supported on this target");
13 return NULL;
14 }
15
16 CpuDefinitionInfoList *
17 qmp_query_cpu_definitions(Error **errp)
18 {
19 error_setg(errp, "CPU model definitions are not supported on this target");
20 return NULL;
21 }