diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-06-05 12:49:34 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-06-05 12:49:34 +0000 |
commit | 358c6407216f4c3b86f91352f7a1fdc19b4494e4 (patch) | |
tree | 5c91c7e395e458349c80a2197b4b97311eb33921 /hw/pci.c | |
parent | e36f36e15fbd0fca6074461a256a9c9ab4ea0afa (diff) | |
download | qemu-358c6407216f4c3b86f91352f7a1fdc19b4494e4.tar.gz qemu-358c6407216f4c3b86f91352f7a1fdc19b4494e4.tar.bz2 qemu-358c6407216f4c3b86f91352f7a1fdc19b4494e4.zip |
host bridge config fix
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@895 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/pci.c')
-rw-r--r-- | hw/pci.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -446,10 +446,9 @@ void i440fx_init(void) d->config[0x02] = 0x37; // device_id d->config[0x03] = 0x12; d->config[0x08] = 0x02; // revision - d->config[0x0a] = 0x04; // class_sub = pci2pci + d->config[0x0a] = 0x00; // class_sub = host2pci d->config[0x0b] = 0x06; // class_base = PCI_bridge - d->config[0x0c] = 0x01; // line_size in 32 bit words - d->config[0x0e] = 0x01; // header_type + d->config[0x0e] = 0x00; // header_type } /* PIIX3 PCI to ISA bridge */ |