diff options
| author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2019-12-13 12:07:36 +0100 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-12-17 19:33:51 +0100 |
| commit | 64c033badda77d81d7c949fc6e3ed6c72dd5c92e (patch) | |
| tree | 9c500836896de044d00713bfe546bd564c2944f4 /hw/i386/pc.c | |
| parent | 6c730e4af9b64b6c83b233f285ec3649747f7eda (diff) | |
| download | focaccia-qemu-64c033badda77d81d7c949fc6e3ed6c72dd5c92e.tar.gz focaccia-qemu-64c033badda77d81d7c949fc6e3ed6c72dd5c92e.zip | |
hw/i386: De-duplicate gsi_handler() to remove kvm_pc_gsi_handler()
Both gsi_handler() and kvm_pc_gsi_handler() have the same content, except one comment. Move the comment, and de-duplicate the code. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/i386/pc.c')
| -rw-r--r-- | hw/i386/pc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/hw/i386/pc.c b/hw/i386/pc.c index dff09e473a..ea7320b91b 100644 --- a/hw/i386/pc.c +++ b/hw/i386/pc.c @@ -344,10 +344,8 @@ GSIState *pc_gsi_create(qemu_irq **irqs, bool pci_enabled) s = g_new0(GSIState, 1); if (kvm_ioapic_in_kernel()) { kvm_pc_setup_irq_routing(pci_enabled); - *irqs = qemu_allocate_irqs(kvm_pc_gsi_handler, s, GSI_NUM_PINS); - } else { - *irqs = qemu_allocate_irqs(gsi_handler, s, GSI_NUM_PINS); } + *irqs = qemu_allocate_irqs(gsi_handler, s, GSI_NUM_PINS); return s; } |