mirror of https://github.com/xemu-project/xemu.git
pci-ids: drop PCI_DEVICE_ID_VIRTIO_IOMMU
Not needed for a virtio 1.0 device. virtio_pci_device_plugged() overrides them anyway (so no functional change). Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Eric Auger <eric.auger@redhat.com> Tested-by: Eric Auger <eric.auger@redhat.com> Message-Id: <20221004112100.301935-2-kraxel@redhat.com>
This commit is contained in:
parent
23b45173fa
commit
c82190fa1b
|
@ -74,8 +74,6 @@ static void virtio_iommu_pci_class_init(ObjectClass *klass, void *data)
|
||||||
k->realize = virtio_iommu_pci_realize;
|
k->realize = virtio_iommu_pci_realize;
|
||||||
set_bit(DEVICE_CATEGORY_MISC, dc->categories);
|
set_bit(DEVICE_CATEGORY_MISC, dc->categories);
|
||||||
device_class_set_props(dc, virtio_iommu_pci_properties);
|
device_class_set_props(dc, virtio_iommu_pci_properties);
|
||||||
pcidev_k->vendor_id = PCI_VENDOR_ID_REDHAT_QUMRANET;
|
|
||||||
pcidev_k->device_id = PCI_DEVICE_ID_VIRTIO_IOMMU;
|
|
||||||
pcidev_k->revision = VIRTIO_PCI_ABI_VERSION;
|
pcidev_k->revision = VIRTIO_PCI_ABI_VERSION;
|
||||||
pcidev_k->class_id = PCI_CLASS_OTHERS;
|
pcidev_k->class_id = PCI_CLASS_OTHERS;
|
||||||
dc->hotpluggable = false;
|
dc->hotpluggable = false;
|
||||||
|
@ -90,7 +88,7 @@ static void virtio_iommu_pci_instance_init(Object *obj)
|
||||||
}
|
}
|
||||||
|
|
||||||
static const VirtioPCIDeviceTypeInfo virtio_iommu_pci_info = {
|
static const VirtioPCIDeviceTypeInfo virtio_iommu_pci_info = {
|
||||||
.generic_name = TYPE_VIRTIO_IOMMU_PCI,
|
.generic_name = TYPE_VIRTIO_IOMMU_PCI,
|
||||||
.instance_size = sizeof(VirtIOIOMMUPCI),
|
.instance_size = sizeof(VirtIOIOMMUPCI),
|
||||||
.instance_init = virtio_iommu_pci_instance_init,
|
.instance_init = virtio_iommu_pci_instance_init,
|
||||||
.class_init = virtio_iommu_pci_class_init,
|
.class_init = virtio_iommu_pci_class_init,
|
||||||
|
|
|
@ -85,7 +85,6 @@ extern bool pci_available;
|
||||||
#define PCI_DEVICE_ID_VIRTIO_9P 0x1009
|
#define PCI_DEVICE_ID_VIRTIO_9P 0x1009
|
||||||
#define PCI_DEVICE_ID_VIRTIO_VSOCK 0x1012
|
#define PCI_DEVICE_ID_VIRTIO_VSOCK 0x1012
|
||||||
#define PCI_DEVICE_ID_VIRTIO_PMEM 0x1013
|
#define PCI_DEVICE_ID_VIRTIO_PMEM 0x1013
|
||||||
#define PCI_DEVICE_ID_VIRTIO_IOMMU 0x1014
|
|
||||||
#define PCI_DEVICE_ID_VIRTIO_MEM 0x1015
|
#define PCI_DEVICE_ID_VIRTIO_MEM 0x1015
|
||||||
|
|
||||||
#define PCI_VENDOR_ID_REDHAT 0x1b36
|
#define PCI_VENDOR_ID_REDHAT 0x1b36
|
||||||
|
|
Loading…
Reference in New Issue