]> git.proxmox.com Git - qemu.git/commitdiff
KVM: ARM: Add dummy kvm_arch_init_irq_routing()
authorAlexey Kardashevskiy <aik@ozlabs.ru>
Wed, 12 Jun 2013 07:26:52 +0000 (17:26 +1000)
committerMichael Tokarev <mjt@tls.msk.ru>
Wed, 12 Jun 2013 09:19:10 +0000 (13:19 +0400)
The common KVM code insists on calling kvm_arch_init_irq_routing()
as soon as it sees kernel header support for it (regardless of whether
QEMU supports it).  Provide a dummy function to satisfy this.

Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
target-arm/kvm.c

index b7bdc034fd9b18998106c50c28925f2a54ad2d83..27dcab93f60714641b804d72535c9480a4738110 100644 (file)
@@ -491,3 +491,7 @@ void kvm_arch_remove_all_hw_breakpoints(void)
 {
     qemu_log_mask(LOG_UNIMP, "%s: not implemented\n", __func__);
 }
+
+void kvm_arch_init_irq_routing(KVMState *s)
+{
+}