diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-01 12:01:04 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-02-01 12:01:04 +0000 |
commit | 4ebcf884836887324848291032a385fe0df7b0af (patch) | |
tree | 3f6dec645e9e382fe3644950141d5c37d0ef47ab /hw/grackle_pci.c | |
parent | e3007e6677fd5723dac5a10033319aa0f8dfaf64 (diff) |
Update #defines for PCI vendor and device IDs from OpenBIOS and Linux
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6490 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/grackle_pci.c')
-rw-r--r-- | hw/grackle_pci.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/hw/grackle_pci.c b/hw/grackle_pci.c index 9a5f3e53de..40c73df3ea 100644 --- a/hw/grackle_pci.c +++ b/hw/grackle_pci.c @@ -154,10 +154,8 @@ PCIBus *pci_grackle_init(uint32_t base, qemu_irq *pic) #if 0 /* PCI2PCI bridge same values as PearPC - check this */ - d->config[0x00] = 0x11; // vendor_id - d->config[0x01] = 0x10; - d->config[0x02] = 0x26; // device_id - d->config[0x03] = 0x00; + pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_DEC); + pci_config_set_device_id(d->config, PCI_DEVICE_ID_DEC_21154); d->config[0x08] = 0x02; // revision d->config[0x0a] = 0x04; // class_sub = pci2pci d->config[0x0b] = 0x06; // class_base = PCI_bridge |