diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-26 15:37:35 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-26 15:37:35 +0000 |
commit | 89853e7fc9ba61805a81b467933696d9d4c6bc13 (patch) | |
tree | 00f99dbd1adbf0f2c7ac75befc848a454c77aefa /hw/gt64xxx.c | |
parent | 62eb84a62f071e2d62d1064a46ec2d3be7427465 (diff) | |
download | qemu-89853e7fc9ba61805a81b467933696d9d4c6bc13.tar.gz qemu-89853e7fc9ba61805a81b467933696d9d4c6bc13.tar.bz2 qemu-89853e7fc9ba61805a81b467933696d9d4c6bc13.zip |
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 <stuart.brady@gmail.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6442 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/gt64xxx.c')
-rw-r--r-- | hw/gt64xxx.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/hw/gt64xxx.c b/hw/gt64xxx.c index b6cd9714ff..f9e6e0c7bf 100644 --- a/hw/gt64xxx.c +++ b/hw/gt64xxx.c @@ -1136,10 +1136,8 @@ PCIBus *pci_gt64120_init(qemu_irq *pic) /* FIXME: Malta specific hw assumptions ahead */ - d->config[0x00] = 0xab; /* vendor_id */ - d->config[0x01] = 0x11; - d->config[0x02] = 0x20; /* device_id */ - d->config[0x03] = 0x46; + pci_config_set_vendor_id(d->config, PCI_VENDOR_ID_MARVELL); + pci_config_set_device_id(d->config, 0x4620); /* device_id */ d->config[0x04] = 0x00; d->config[0x05] = 0x00; |