mirror of https://gitee.com/openkylin/qemu.git
14 lines
418 B
C
14 lines
418 B
C
#include "qemu/osdep.h"
|
|
#include "qemu-common.h"
|
|
#include "sysemu/arch_init.h"
|
|
#include "qapi/error.h"
|
|
#include "qapi/qmp/qerror.h"
|
|
|
|
CpuModelExpansionInfo *arch_query_cpu_model_expansion(CpuModelExpansionType type,
|
|
CpuModelInfo *mode,
|
|
Error **errp)
|
|
{
|
|
error_setg(errp, QERR_UNSUPPORTED);
|
|
return NULL;
|
|
}
|