git://git.qemu.org
/
qemu.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
spapr: Workaround for broken radix guests
[qemu.git]
/
stubs
/
arch-query-cpu-model-expansion.c
1
#include
"qemu/osdep.h"
2
#include
"qemu-common.h"
3
#include
"sysemu/arch_init.h"
4
#include
"qapi/qmp/qerror.h"
5
6
CpuModelExpansionInfo
*
arch_query_cpu_model_expansion
(
CpuModelExpansionType type
,
7
CpuModelInfo
*
mode
,
8
Error
**
errp
)
9
{
10
error_setg
(
errp
,
QERR_UNSUPPORTED
);
11
return
NULL
;
12
}