From deb54399df163e782aff00beb106f3b6a7cc9663 Mon Sep 17 00:00:00 2001 From: aliguori Date: Mon, 26 Jan 2009 15:37:35 +0000 Subject: Define PCI vendor and device IDs in pci.h (Stuart Brady) This patch defines PCI vendor and device IDs in pci.h (matching those from Linux's pci_ids.h), and uses those definitions where appropriate. Change from v1: Introduces pci_config_set_vendor_id() / pci_config_set_device_id() accessors as suggested by Anthony Liguori. Signed-off-by: Stuart Brady Signed-off-by: Anthony Liguori git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6442 c046a42c-6fe2-441c-8c8c-71466251a162 --- hw/acpi.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'hw/acpi.c') diff --git a/hw/acpi.c b/hw/acpi.c index c127d4cb4..78e8d088f 100644 --- a/hw/acpi.c +++ b/hw/acpi.c @@ -503,10 +503,8 @@ i2c_bus *piix4_pm_init(PCIBus *bus, int devfn, uint32_t smb_io_base, devfn, NULL, pm_write_config); pm_state = s; pci_conf = s->dev.config; - pci_conf[0x00] = 0x86; - pci_conf[0x01] = 0x80; - pci_conf[0x02] = 0x13; - pci_conf[0x03] = 0x71; + pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_INTEL); + pci_config_set_device_id(pci_conf, PCI_DEVICE_ID_INTEL_82371AB_3); pci_conf[0x06] = 0x80; pci_conf[0x07] = 0x02; pci_conf[0x08] = 0x03; // revision number -- cgit v1.2.3