Signed-off-by: Hervé Poussineau <hpous...@reactos.org> --- hw/pci-stub.c | 10 ++++++++++ 1 file changed, 10 insertions(+)
diff --git a/hw/pci-stub.c b/hw/pci-stub.c index e083191..ed31441 100644 --- a/hw/pci-stub.c +++ b/hw/pci-stub.c @@ -39,6 +39,16 @@ void pci_register_bar(PCIDevice *pci_dev, int region_num, { } +uint32_t pci_default_read_config(PCIDevice *d, + uint32_t address, int len) +{ + return 0; +} + +void pci_default_write_config(PCIDevice *d, uint32_t addr, uint32_t val, int l) +{ +} + const VMStateDescription vmstate_pci_device = { .name = "PCIDeviceStub", .version_id = 1, -- 1.7.10.4