diff options
author | Anthony PERARD | 2011-06-22 17:58:31 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2011-07-17 17:47:34 +0200 |
commit | ce4fd422a6c5119baf4a2c3115c7ea63efb0f68e (patch) | |
tree | 7738a7a91d7d9b8a484548bc100a2c128d51bba2 /hw | |
parent | pci_ids: tweak names to match linux/pci_ids.h (diff) | |
download | qemu-ce4fd422a6c5119baf4a2c3115c7ea63efb0f68e.tar.gz qemu-ce4fd422a6c5119baf4a2c3115c7ea63efb0f68e.tar.xz qemu-ce4fd422a6c5119baf4a2c3115c7ea63efb0f68e.zip |
hw/piix_pci.c: Fix PIIX3-xen to initialize ids
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/piix_pci.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/piix_pci.c b/hw/piix_pci.c index 26ce90451a..d08b31a266 100644 --- a/hw/piix_pci.c +++ b/hw/piix_pci.c @@ -478,6 +478,9 @@ static PCIDeviceInfo i440fx_info[] = { .no_hotplug = 1, .init = piix3_initfn, .config_write = piix3_write_config_xen, + .vendor_id = PCI_VENDOR_ID_INTEL, + .device_id = PCI_DEVICE_ID_INTEL_82371SB_0, // 82371SB PIIX3 PCI-to-ISA bridge (Step A1) + .class_id = PCI_CLASS_BRIDGE_ISA, },{ /* end of list */ } |