diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-07-02 15:25:07 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-07-06 17:01:11 +0200 |
commit | 3af87d91692e12d8abe85a3e8ada5d652c932490 (patch) | |
tree | 84e4bd8f47414f204bcb2fe355ccd3863a396930 /stubs/pci-bus.c | |
parent | 89aa165e1d66afbfe61056e24fc9fab7452418d7 (diff) |
stubs: add pci_create_simple
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
Diffstat (limited to 'stubs/pci-bus.c')
-rw-r--r-- | stubs/pci-bus.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/stubs/pci-bus.c b/stubs/pci-bus.c new file mode 100644 index 0000000000..a8932fa932 --- /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(); +} |