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/virtio.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'hw/virtio.c') diff --git a/hw/virtio.c b/hw/virtio.c index dba80f8..2e3984e 100644 --- a/hw/virtio.c +++ b/hw/virtio.c @@ -830,10 +830,8 @@ VirtIODevice *virtio_init_pci(PCIBus *bus, const char *name, vdev->vq = qemu_mallocz(sizeof(VirtQueue) * VIRTIO_PCI_QUEUE_MAX); config = pci_dev->config; - config[0x00] = vendor & 0xFF; - config[0x01] = (vendor >> 8) & 0xFF; - config[0x02] = device & 0xFF; - config[0x03] = (device >> 8) & 0xFF; + pci_config_set_vendor_id(config, vendor); + pci_config_set_device_id(config, device); config[0x08] = VIRTIO_PCI_ABI_VERSION; -- cgit v1.1