mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
target-arm/monitor.c: Advertise emulated GICv3 in capabilities
Now we have an emulated GICv3 we should advertise it via the capabilities in the monitor protocol. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Shannon Zhao <shannon.zhao@linaro.org> Tested-by: Shannon Zhao <shannon.zhao@linaro.org> Message-id: 1465915112-29272-21-git-send-email-peter.maydell@linaro.org
This commit is contained in:
parent
5de8229db5
commit
3b1a222501
1 changed files with 1 additions and 2 deletions
|
@ -72,8 +72,7 @@ GICCapabilityList *qmp_query_gic_capabilities(Error **errp)
|
|||
GICCapability *v2 = gic_cap_new(2), *v3 = gic_cap_new(3);
|
||||
|
||||
v2->emulated = true;
|
||||
/* TODO: we'd change to true after we get emulated GICv3. */
|
||||
v3->emulated = false;
|
||||
v3->emulated = true;
|
||||
|
||||
gic_cap_kvm_probe(v2, v3);
|
||||
|
||||
|
|
Loading…
Reference in a new issue