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-Tag: v0.13.0-rc2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=41de2f0c864dd94908015ca6846e635f028b9b93;p=thirdparty%2Fqemu.git Add kvm_set_ioeventfd_mmio_long definition for non-KVM systems Signed-off-by: Cam Macdonell Signed-off-by: Blue Swirl (cherry picked from commit 1fd74012750dcd8542708bdcc10becb8780f7493) --- diff --git a/kvm-stub.c b/kvm-stub.c index 3378bd3b218..d45f9fa1dfd 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; +}