From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53674) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmfSY-0003Kz-FQ for qemu-devel@nongnu.org; Wed, 12 Jun 2013 03:27:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UmfSX-0001PT-3C for qemu-devel@nongnu.org; Wed, 12 Jun 2013 03:27:10 -0400 Received: from mail-pa0-x234.google.com ([2607:f8b0:400e:c03::234]:37506) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UmfSW-0001PC-Tm for qemu-devel@nongnu.org; Wed, 12 Jun 2013 03:27:09 -0400 Received: by mail-pa0-f52.google.com with SMTP id kq13so3320356pab.39 for ; Wed, 12 Jun 2013 00:27:08 -0700 (PDT) From: Alexey Kardashevskiy Date: Wed, 12 Jun 2013 17:26:52 +1000 Message-Id: <1371022015-7576-2-git-send-email-aik@ozlabs.ru> In-Reply-To: <1371022015-7576-1-git-send-email-aik@ozlabs.ru> References: <1371022015-7576-1-git-send-email-aik@ozlabs.ru> Subject: [Qemu-devel] [PATCH 1/4] KVM: ARM: Add dummy kvm_arch_init_irq_routing() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Alexey Kardashevskiy , qemu-trivial@nongnu.org, qemu-ppc@nongnu.org, Alexander Graf 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 --- target-arm/kvm.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/target-arm/kvm.c b/target-arm/kvm.c index b9051a4..7a90d38 100644 --- a/target-arm/kvm.c +++ b/target-arm/kvm.c @@ -493,3 +493,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) +{ +} -- 1.7.10.4