From: Paolo Bonzini Date: Thu, 13 Dec 2012 09:19:36 +0000 (+0100) Subject: virtio-9p: use symbolic constant, add to pci-ids.txt X-Git-Tag: v1.4.0-rc0~196^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=13744bd0a054bc7a4b1432cc8facd23d41a9806e;p=thirdparty%2Fqemu.git virtio-9p: use symbolic constant, add to pci-ids.txt Signed-off-by: Paolo Bonzini Signed-off-by: Michael S. Tsirkin --- diff --git a/docs/specs/pci-ids.txt b/docs/specs/pci-ids.txt index df2527fe4ca..2d5329af497 100644 --- a/docs/specs/pci-ids.txt +++ b/docs/specs/pci-ids.txt @@ -21,6 +21,7 @@ maintained as part of the virtio specification. 1af4:1003 console device 1af4:1004 SCSI host bus adapter device 1af4:1005 entropy generator device +1af4:1009 9p filesystem device 1af4:10f0 Available for experimental usage without registration. Must get to official ID when the code leaves the test lab (i.e. when seeking diff --git a/hw/9pfs/virtio-9p-device.c b/hw/9pfs/virtio-9p-device.c index 6761bce9dc5..f16ccfbed14 100644 --- a/hw/9pfs/virtio-9p-device.c +++ b/hw/9pfs/virtio-9p-device.c @@ -170,7 +170,7 @@ static void virtio_9p_class_init(ObjectClass *klass, void *data) k->init = virtio_9p_init_pci; k->vendor_id = PCI_VENDOR_ID_REDHAT_QUMRANET; - k->device_id = 0x1009; + k->device_id = PCI_DEVICE_ID_VIRTIO_9P; k->revision = VIRTIO_PCI_ABI_VERSION; k->class_id = 0x2; dc->props = virtio_9p_properties; diff --git a/hw/pci/pci.h b/hw/pci/pci.h index 72927e31496..ed098ced6be 100644 --- a/hw/pci/pci.h +++ b/hw/pci/pci.h @@ -77,6 +77,7 @@ #define PCI_DEVICE_ID_VIRTIO_CONSOLE 0x1003 #define PCI_DEVICE_ID_VIRTIO_SCSI 0x1004 #define PCI_DEVICE_ID_VIRTIO_RNG 0x1005 +#define PCI_DEVICE_ID_VIRTIO_9P 0x1009 #define FMT_PCIBUS PRIx64