[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 02/20] stubs: add pci_create_simple
From: |
Gerd Hoffmann |
Subject: |
[PULL 02/20] stubs: add pci_create_simple |
Date: |
Mon, 6 Jul 2020 21:29:03 +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-3-kraxel@redhat.com
---
stubs/pci-bus.c | 7 +++++++
stubs/Makefile.objs | 1 +
2 files changed, 8 insertions(+)
create mode 100644 stubs/pci-bus.c
diff --git a/stubs/pci-bus.c b/stubs/pci-bus.c
new file mode 100644
index 000000000000..a8932fa93250
--- /dev/null
+++ b/stubs/pci-bus.c
@@ -0,0 +1,7 @@
+#include "qemu/osdep.h"
+#include "hw/pci/pci.h"
+
+PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name)
+{
+ g_assert_not_reached();
+}
diff --git a/stubs/Makefile.objs b/stubs/Makefile.objs
index ff0411d21f22..918e46bdc1ca 100644
--- a/stubs/Makefile.objs
+++ b/stubs/Makefile.objs
@@ -13,6 +13,7 @@ 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
stub-obj-y += ramfb.o
--
2.18.4
- [PULL 00/20] Audio 20200706 patches, Gerd Hoffmann, 2020/07/06
- [PULL 02/20] stubs: add pci_create_simple,
Gerd Hoffmann <=
- [PULL 03/20] audio: add deprecated_register_soundhw, Gerd Hoffmann, 2020/07/06
- [PULL 12/20] pc_basic_device_init: drop has_pit arg, Gerd Hoffmann, 2020/07/06
- [PULL 01/20] stubs: add isa_create_simple, Gerd Hoffmann, 2020/07/06
- [PULL 04/20] audio: deprecate -soundhw ac97, Gerd Hoffmann, 2020/07/06
- [PULL 09/20] audio: deprecate -soundhw sb16, Gerd Hoffmann, 2020/07/06
- [PULL 15/20] audio: rework pcspk_init(), Gerd Hoffmann, 2020/07/06
- [PULL 08/20] audio: deprecate -soundhw gus, Gerd Hoffmann, 2020/07/06
- [PULL 19/20] pcspk: update docs/system/target-i386-desc.rst.inc, Gerd Hoffmann, 2020/07/06
- [PULL 17/20] audio: deprecate -soundhw pcspk, Gerd Hoffmann, 2020/07/06
- [PULL 06/20] audio: deprecate -soundhw adlib, Gerd Hoffmann, 2020/07/06