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 CpuModelCompareInfo * 8 qmp_query_cpu_model_comparison(CpuModelInfo *infoa, 9 CpuModelInfo *infob, 10 Error **errp) 11 { 12 error_setg(errp, "CPU model comparison is not supported on this target"); 13 return NULL; 14 } 15 16 CpuModelBaselineInfo * 17 qmp_query_cpu_model_baseline(CpuModelInfo *infoa, 18 CpuModelInfo *infob, 19 Error **errp) 20 { 21 error_setg(errp, "CPU model baseline is not supported on this target"); 22 return NULL; 23 } 24