summaryrefslogtreecommitdiffstats
path: root/hw
diff options
context:
space:
mode:
authorBlue Swirl2009-07-05 22:33:02 +0200
committerBlue Swirl2009-07-05 22:33:02 +0200
commite8d2a88755b849bdadaf80d19e342eade3c017bc (patch)
treeb7ff50149d4654e4f28bd42aaa10423efb22c9f4 /hw
parentUpdate OpenBIOS images to r505 (diff)
downloadqemu-e8d2a88755b849bdadaf80d19e342eade3c017bc.tar.gz
qemu-e8d2a88755b849bdadaf80d19e342eade3c017bc.tar.xz
qemu-e8d2a88755b849bdadaf80d19e342eade3c017bc.zip
Fix the PCI header type of APB
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/apb_pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/apb_pci.c b/hw/apb_pci.c
index b63ccd130e..5c8ffee4b2 100644
--- a/hw/apb_pci.c
+++ b/hw/apb_pci.c
@@ -263,7 +263,7 @@ PCIBus *pci_apb_init(target_phys_addr_t special_base,
d->config[0x09] = 0x00; // programming i/f
pci_config_set_class(d->config, PCI_CLASS_BRIDGE_HOST);
d->config[0x0D] = 0x10; // latency_timer
- d->config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type
+ d->config[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_BRIDGE; // header_type
/* APB secondary busses */
*bus2 = pci_bridge_init(s->bus, 8, PCI_VENDOR_ID_SUN,