From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49133) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uhz7H-0002nj-3P for qemu-devel@nongnu.org; Thu, 30 May 2013 05:25:55 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uhz7C-0004Ev-2n for qemu-devel@nongnu.org; Thu, 30 May 2013 05:25:51 -0400 Received: from mail-yh0-x229.google.com ([2607:f8b0:4002:c01::229]:41485) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uhz7B-0004Ei-Ru for qemu-devel@nongnu.org; Thu, 30 May 2013 05:25:45 -0400 Received: by mail-yh0-f41.google.com with SMTP id z12so1696yhz.14 for ; Thu, 30 May 2013 02:25:44 -0700 (PDT) From: Alexey Kardashevskiy Date: Thu, 30 May 2013 19:25:33 +1000 Message-Id: <1369905933-27199-1-git-send-email-aik@ozlabs.ru> Subject: [Qemu-devel] [PATCH] target-ppc kvm: missing 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-ppc@nongnu.org, Alexander Graf , David Gibson This adds an empty stub to make the compiler happy. Signed-off-by: Alexey Kardashevskiy --- target-ppc/kvm.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/target-ppc/kvm.c b/target-ppc/kvm.c index 3ab2946..2bbc3b8 100644 --- a/target-ppc/kvm.c +++ b/target-ppc/kvm.c @@ -1797,3 +1797,7 @@ int kvm_arch_on_sigbus(int code, void *addr) { return 1; } + +void kvm_arch_init_irq_routing(KVMState *s) +{ +} -- 1.7.10.4