Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'iommu-fixes-v5.0-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu

Pull IOMMU fix from Joerg Roedel:
"One fix only for now: Fix probe deferral in iommu/of code (broke with
recent changes to iommu_ops->add_device invocation)"

* tag 'iommu-fixes-v5.0-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu:
iommu/of: Fix probe-deferral

+1 -1
+1 -1
drivers/iommu/of_iommu.c
··· 224 224 * If we have reason to believe the IOMMU driver missed the initial 225 225 * probe for dev, replay it to get things in order. 226 226 */ 227 - if (dev->bus && !device_iommu_mapped(dev)) 227 + if (!err && dev->bus && !device_iommu_mapped(dev)) 228 228 err = iommu_probe_device(dev); 229 229 230 230 /* Ignore all other errors apart from EPROBE_DEFER */