]> git.proxmox.com Git - mirror_qemu.git/commitdiff
stubs: add isa_create_simple
authorGerd Hoffmann <kraxel@redhat.com>
Thu, 2 Jul 2020 13:25:06 +0000 (15:25 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Mon, 6 Jul 2020 15:01:11 +0000 (17:01 +0200)
Needed for -soundhw cleanup.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20200702132525.6849-2-kraxel@redhat.com

stubs/Makefile.objs
stubs/isa-bus.c [new file with mode: 0644]

index f32b9e47a3d8d3d4c474f77b0cd7f8d70ff97ef0..ff0411d21f22701a226e6fc7744acb6dc9d70147 100644 (file)
@@ -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
diff --git a/stubs/isa-bus.c b/stubs/isa-bus.c
new file mode 100644 (file)
index 0000000..522f448
--- /dev/null
@@ -0,0 +1,7 @@
+#include "qemu/osdep.h"
+#include "hw/isa/isa.h"
+
+ISADevice *isa_create_simple(ISABus *bus, const char *name)
+{
+    g_assert_not_reached();
+}