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 | deb54399df163e782aff00beb106f3b6a7cc9663 (patch) | |
tree | 00f99dbd1adbf0f2c7ac75befc848a454c77aefa /hw/ne2000.c | |
parent | 90a1e3c0b5811d6b334085d56fba1f5f47eaaea3 (diff) | |
download | qemu-deb54399df163e782aff00beb106f3b6a7cc9663.tar.gz qemu-deb54399df163e782aff00beb106f3b6a7cc9663.tar.bz2 qemu-deb54399df163e782aff00beb106f3b6a7cc9663.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/ne2000.c')
-rw-r--r-- | hw/ne2000.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/hw/ne2000.c b/hw/ne2000.c index a85730f8c7..af22f6eaad 100644 --- a/hw/ne2000.c +++ b/hw/ne2000.c @@ -790,10 +790,8 @@ void pci_ne2000_init(PCIBus *bus, NICInfo *nd, int devfn) devfn, NULL, NULL); pci_conf = d->dev.config; - pci_conf[0x00] = 0xec; // Realtek 8029 - pci_conf[0x01] = 0x10; - pci_conf[0x02] = 0x29; - pci_conf[0x03] = 0x80; + pci_config_set_vendor_id(pci_conf, PCI_VENDOR_ID_REALTEK); + pci_config_set_device_id(pci_conf, 0x8029); // Realtek 8029 pci_conf[0x0a] = 0x00; // ethernet network controller pci_conf[0x0b] = 0x02; pci_conf[0x0e] = 0x00; // header_type |