diff options
author | Isaku Yamahata | 2009-05-03 21:03:00 +0200 |
---|---|---|
committer | Blue Swirl | 2009-05-03 21:03:00 +0200 |
commit | 6407f37373093fd56cde9e20b0b5a878b67521ca (patch) | |
tree | 88aaaa831dd73aa4d3381a53f506ea89b7d685bf /hw/acpi.c | |
parent | Fix typos in comments in exec.c (diff) | |
download | qemu-6407f37373093fd56cde9e20b0b5a878b67521ca.tar.gz qemu-6407f37373093fd56cde9e20b0b5a878b67521ca.tar.xz qemu-6407f37373093fd56cde9e20b0b5a878b67521ca.zip |
use PCI_HEADER_TYPE.
use symbolic value instead of 0x0e and related value.
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Diffstat (limited to 'hw/acpi.c')
-rw-r--r-- | hw/acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -515,7 +515,7 @@ i2c_bus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base, pci_conf[0x08] = 0x03; // revision number pci_conf[0x09] = 0x00; pci_config_set_class(pci_conf, PCI_CLASS_BRIDGE_OTHER); - pci_conf[0x0e] = 0x00; // header_type + pci_conf[PCI_HEADER_TYPE] = PCI_HEADER_TYPE_NORMAL; // header_type pci_conf[0x3d] = 0x01; // interrupt pin 1 pci_conf[0x40] = 0x01; /* PM io base read only bit */ |