From: Cam Macdonell Date: Sat, 14 Aug 2010 23:47:30 +0000 (-0600) Subject: Add kvm_set_ioeventfd_mmio_long definition for non-KVM systems X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1fd74012750dcd8542708bdcc10becb8780f7493;p=qemu.git Add kvm_set_ioeventfd_mmio_long definition for non-KVM systems Signed-off-by: Cam Macdonell Signed-off-by: Blue Swirl --- diff --git a/kvm-stub.c b/kvm-stub.c index 3378bd3b21..d45f9fa1df 100644 --- a/kvm-stub.c +++ b/kvm-stub.c @@ -136,3 +136,8 @@ int kvm_set_ioeventfd_pio_word(int fd, uint16_t addr, uint16_t val, bool assign) { return -ENOSYS; } + +int kvm_set_ioeventfd_mmio_long(int fd, uint32_t adr, uint32_t val, bool assign) +{ + return -ENOSYS; +}