mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 23:25:48 +00:00
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
This commit is contained in:
7
stubs/pci-bus.c
Normal file
7
stubs/pci-bus.c
Normal file
@ -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();
|
||||
}
|
Reference in New Issue
Block a user