Message ID | 20200805100126.25583-3-philmd@redhat.com |
---|---|
State | Superseded |
Headers | show |
Series | [PATCH-for-5.1,v3,1/2] exec: Restrict icount to softmmu | expand |
diff --git a/stubs/cpu-get-icount.c b/stubs/cpu-get-icount.c index b35f844638..4578217fe2 100644 --- a/stubs/cpu-get-icount.c +++ b/stubs/cpu-get-icount.c @@ -17,5 +17,5 @@ int64_t cpu_get_icount_raw(void) void qemu_timer_notify_cb(void *opaque, QEMUClockType type) { - qemu_notify_event(); + /* Nothing to do. */ } diff --git a/stubs/notify-event.c b/stubs/notify-event.c deleted file mode 100644 index 827bb52d1a..0000000000 --- a/stubs/notify-event.c +++ /dev/null @@ -1,6 +0,0 @@ -#include "qemu/osdep.h" -#include "qemu/main-loop.h" - -void qemu_notify_event(void) -{ -} diff --git a/stubs/Makefile.objs b/stubs/Makefile.objs index d42046afe4..cb374c96db 100644 --- a/stubs/Makefile.objs +++ b/stubs/Makefile.objs @@ -12,7 +12,6 @@ stub-obj-y += isa-bus.o stub-obj-$(CONFIG_LINUX_AIO) += linux-aio.o stub-obj-$(CONFIG_LINUX_IO_URING) += io_uring.o stub-obj-y += monitor-core.o -stub-obj-y += notify-event.o stub-obj-y += pci-bus.o stub-obj-y += qmp_memory_device.o stub-obj-y += qtest.o
We don't need the qemu_notify_event() stub anymore. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> --- stubs/cpu-get-icount.c | 2 +- stubs/notify-event.c | 6 ------ stubs/Makefile.objs | 1 - 3 files changed, 1 insertion(+), 8 deletions(-) delete mode 100644 stubs/notify-event.c