]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - drivers/iommu/of_iommu.c
Merge tag 'platform-drivers-x86-v4.12-2' of git://git.infradead.org/linux-platform...
[karo-tx-linux.git] / drivers / iommu / of_iommu.c
index e6e9bec42e5f1b94eec28b808dba2ee2e1aafdf5..19779b88a47973eef332b88b05d1ac76193f788d 100644 (file)
@@ -237,6 +237,12 @@ const struct iommu_ops *of_iommu_configure(struct device *dev,
                        ops = ERR_PTR(err);
        }
 
+       /* Ignore all other errors apart from EPROBE_DEFER */
+       if (IS_ERR(ops) && (PTR_ERR(ops) != -EPROBE_DEFER)) {
+               dev_dbg(dev, "Adding to IOMMU failed: %ld\n", PTR_ERR(ops));
+               ops = NULL;
+       }
+
        return ops;
 }