I have no idea what's going on here, but this is broken and cannot possibly work because:
1) It's qdev name conflicts with a device that sits on SysBus 2) The PCI constructor expects a SysBus device... but's it's a PCIDevice If you do qdev_create("grackle"), the code expects to get the SysBus version so drop the mystery PCI version. Signed-off-by: Anthony Liguori <aligu...@us.ibm.com> --- hw/grackle_pci.c | 17 ----------------- 1 files changed, 0 insertions(+), 17 deletions(-) diff --git a/hw/grackle_pci.c b/hw/grackle_pci.c index 1e529fb..84f1a47 100644 --- a/hw/grackle_pci.c +++ b/hw/grackle_pci.c @@ -115,27 +115,10 @@ static int pci_grackle_init_device(SysBusDevice *dev) return 0; } -static int grackle_pci_host_init(PCIDevice *d) -{ - d->config[0x09] = 0x01; - return 0; -} - -static PCIDeviceInfo grackle_pci_host_info = { - .qdev.name = "grackle", - .qdev.size = sizeof(PCIDevice), - .init = grackle_pci_host_init, - .vendor_id = PCI_VENDOR_ID_MOTOROLA, - .device_id = PCI_DEVICE_ID_MOTOROLA_MPC106, - .revision = 0x00, - .class_id = PCI_CLASS_BRIDGE_HOST, -}; - static void grackle_register_devices(void) { sysbus_register_dev("grackle", sizeof(GrackleState), pci_grackle_init_device); - pci_qdev_register(&grackle_pci_host_info); } device_init(grackle_register_devices) -- 1.7.4.1