From b3a1c626fc55e1dd87166a7b837e16ff6a1b0071 Mon Sep 17 00:00:00 2001 From: Alexey Kardashevskiy Date: Wed, 12 Jun 2013 17:26:52 +1000 Subject: [PATCH] KVM: ARM: Add dummy kvm_arch_init_irq_routing() 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 Signed-off-by: Michael Tokarev --- target-arm/kvm.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/target-arm/kvm.c b/target-arm/kvm.c index b7bdc034fd..27dcab93f6 100644 --- a/target-arm/kvm.c +++ b/target-arm/kvm.c @@ -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) +{ +}