diff options
-rw-r--r-- | hw/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -587,7 +587,7 @@ PCIBus *pci_bridge_init(PCIBus *bus, int devfn, uint32_t id, s = (PCIBridge *)pci_register_device(bus, name, sizeof(PCIBridge), devfn, NULL, pci_bridge_write_config); s->dev.config[0x00] = id >> 16; - s->dev.config[0x01] = id > 24; + s->dev.config[0x01] = id >> 24; s->dev.config[0x02] = id; // device_id s->dev.config[0x03] = id >> 8; s->dev.config[0x04] = 0x06; // command = bus master, pci mem |