summaryrefslogtreecommitdiffstats
path: root/hw/hyperv/vmbus.c
diff options
context:
space:
mode:
authorJon Doron2020-06-17 18:09:02 +0200
committerPaolo Bonzini2020-06-26 15:39:40 +0200
commit8f06f22f38246ea7a6b0b20013fd9a7a87e23569 (patch)
treeeb150f67f3024fd0e7d95cfa7390283f45ddbf51 /hw/hyperv/vmbus.c
parentkvm: i386: allow TSC to differ by NTP correction bounds without TSC scaling (diff)
downloadqemu-8f06f22f38246ea7a6b0b20013fd9a7a87e23569.tar.gz
qemu-8f06f22f38246ea7a6b0b20013fd9a7a87e23569.tar.xz
qemu-8f06f22f38246ea7a6b0b20013fd9a7a87e23569.zip
hyperv: vmbus: Remove the 2nd IRQ
It seems like Windows does not really require 2 IRQs to have a functioning VMBus. Signed-off-by: Jon Doron <arilou@gmail.com> Message-Id: <20200617160904.681845-2-arilou@gmail.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/hyperv/vmbus.c')
-rw-r--r--hw/hyperv/vmbus.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/hyperv/vmbus.c b/hw/hyperv/vmbus.c
index f371240176..a8bcb41026 100644
--- a/hw/hyperv/vmbus.c
+++ b/hw/hyperv/vmbus.c
@@ -2741,8 +2741,7 @@ static const VMStateDescription vmstate_vmbus_bridge = {
};
static Property vmbus_bridge_props[] = {
- DEFINE_PROP_UINT8("irq0", VMBusBridge, irq0, 7),
- DEFINE_PROP_UINT8("irq1", VMBusBridge, irq1, 13),
+ DEFINE_PROP_UINT8("irq", VMBusBridge, irq, 7),
DEFINE_PROP_END_OF_LIST()
};