AMD IOMMU: use calc_devid in prealloc_protection_domains
Impact: cleanup Signed-off-by: Joerg Roedel <joerg.roedel@amd.com>
This commit is contained in:
parent
c226f85309
commit
edcb34da25
|
@ -1543,7 +1543,7 @@ void prealloc_protection_domains(void)
|
||||||
u16 devid;
|
u16 devid;
|
||||||
|
|
||||||
while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
|
while ((dev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, dev)) != NULL) {
|
||||||
devid = (dev->bus->number << 8) | dev->devfn;
|
devid = calc_devid(dev->bus->number, dev->devfn);
|
||||||
if (devid > amd_iommu_last_bdf)
|
if (devid > amd_iommu_last_bdf)
|
||||||
continue;
|
continue;
|
||||||
devid = amd_iommu_alias_table[devid];
|
devid = amd_iommu_alias_table[devid];
|
||||||
|
|
Loading…
Reference in New Issue