Commit 89aa165e authored by Gerd Hoffmann's avatar Gerd Hoffmann
Browse files

stubs: add isa_create_simple



Needed for -soundhw cleanup.

Signed-off-by: default avatarGerd Hoffmann <kraxel@redhat.com>
Reviewed-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: default avatarPhilippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20200702132525.6849-2-kraxel@redhat.com
parent eb6490f5
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -8,6 +8,7 @@ stub-obj-y += fdset.o
stub-obj-y += gdbstub.o
stub-obj-y += iothread-lock.o
stub-obj-y += is-daemonized.o
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

stubs/isa-bus.c

0 → 100644
+7 −0
Original line number Diff line number Diff line
#include "qemu/osdep.h"
#include "hw/isa/isa.h"

ISADevice *isa_create_simple(ISABus *bus, const char *name)
{
    g_assert_not_reached();
}