From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55393) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VEgop-00023B-EE for qemu-devel@nongnu.org; Wed, 28 Aug 2013 10:34:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VEgoi-0005hf-JY for qemu-devel@nongnu.org; Wed, 28 Aug 2013 10:33:59 -0400 Received: from mx1.redhat.com ([209.132.183.28]:57348) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VEgoi-0005hH-CZ for qemu-devel@nongnu.org; Wed, 28 Aug 2013 10:33:52 -0400 From: Gleb Natapov Date: Wed, 28 Aug 2013 17:33:38 +0300 Message-Id: <821c808bd1863efc2c1e977800ae77db633a185c.1377699174.git.gleb@redhat.com> In-Reply-To: References: Subject: [Qemu-devel] [PATCH 10/10] kvm-stub: fix compilation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org From: Paolo Bonzini Non-KVM targets fail compilation on the uq/master branch. Fix the prototype of kvm_irqchip_add_irqfd_notifier to match the one in kvm-all.c. Signed-off-by: Paolo Bonzini Signed-off-by: Gleb Natapov --- kvm-stub.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kvm-stub.c b/kvm-stub.c index 7b2233a..806b044 100644 --- a/kvm-stub.c +++ b/kvm-stub.c @@ -135,7 +135,8 @@ int kvm_irqchip_update_msi_route(KVMState *s, int virq, MSIMessage msg) return -ENOSYS; } -int kvm_irqchip_add_irqfd_notifier(KVMState *s, EventNotifier *n, int virq) +int kvm_irqchip_add_irqfd_notifier(KVMState *s, EventNotifier *n, + EventNotifier *rn, int virq) { return -ENOSYS; } -- 1.7.10.4