xref: /openbmc/qemu/stubs/pci-bus.c (revision 0fb7ea45)
1 #include "qemu/osdep.h"
2 #include "hw/pci/pci.h"
3 
pci_create_simple(PCIBus * bus,int devfn,const char * name)4 PCIDevice *pci_create_simple(PCIBus *bus, int devfn, const char *name)
5 {
6     g_assert_not_reached();
7 }
8