
<		if (!iommu_init_table(tbl, ppci->phb->node, 0, 0))
<			panic("Failed to initialize iommu table");
---
>		if (!init_and_check_iommu_table(tbl, ppci))
>			panic("Failed to initialize iommu table");
>
>	}
>
>	static bool init_and_check_iommu_table(struct iommu_table *tbl, struct pci_dn *ppci)
>	{
>		if (tbl == NULL)
>			return false;
>		return iommu_init_table(tbl, ppci->phb->node, 0, 0);
