diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-12-13 10:19:38 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2013-01-09 12:10:28 +0200 |
commit | 5c03a2542fbe1a275fe3dd7ebd48a6a283b249ed (patch) | |
tree | 638a8e6460c4ff1a3224817189c8059425e260be /hw/pci | |
parent | b8ef62a9b746f2d7078d97c7ee5d1c7a31b42d5d (diff) |
pci: use constants for devices under the 1B36 device ID, document them
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pci')
-rw-r--r-- | hw/pci/pci.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hw/pci/pci.h b/hw/pci/pci.h index ed098ced6b..f340fe57c9 100644 --- a/hw/pci/pci.h +++ b/hw/pci/pci.h @@ -79,6 +79,13 @@ #define PCI_DEVICE_ID_VIRTIO_RNG 0x1005 #define PCI_DEVICE_ID_VIRTIO_9P 0x1009 +#define PCI_VENDOR_ID_REDHAT 0x1b36 +#define PCI_DEVICE_ID_REDHAT_BRIDGE 0x0001 +#define PCI_DEVICE_ID_REDHAT_SERIAL 0x0002 +#define PCI_DEVICE_ID_REDHAT_SERIAL2 0x0003 +#define PCI_DEVICE_ID_REDHAT_SERIAL4 0x0004 +#define PCI_DEVICE_ID_REDHAT_QXL 0x0100 + #define FMT_PCIBUS PRIx64 typedef void PCIConfigWriteFunc(PCIDevice *pci_dev, |