aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iommu/iommu.c
diff options
context:
space:
mode:
authorJoerg Roedel <jroedel@suse.de>2018-12-20 10:02:20 +0100
committerJoerg Roedel <jroedel@suse.de>2018-12-20 10:02:20 +0100
commitdc9de8a2b20f495696330d60a289935f36407995 (patch)
tree8a4f3981c0cf7b3b8d60651bdc973faffef566df /drivers/iommu/iommu.c
parentACPI/IORT: Don't call iommu_ops->add_device directly (diff)
downloadlinux-dev-dc9de8a2b20f495696330d60a289935f36407995.tar.xz
linux-dev-dc9de8a2b20f495696330d60a289935f36407995.zip
iommu: Check for iommu_ops == NULL in iommu_probe_device()
This check needs to be there and got lost at some point during development. Add it again. Fixes: 641fb0efbff0 ('iommu/of: Don't call iommu_ops->add_device directly') Reported-by: Marek Szyprowski <m.szyprowski@samsung.com> Reported-by: kernelci.org bot <bot@kernelci.org> Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'drivers/iommu/iommu.c')
-rw-r--r--drivers/iommu/iommu.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c
index a2131751dcff..3ed4db334341 100644
--- a/drivers/iommu/iommu.c
+++ b/drivers/iommu/iommu.c
@@ -114,10 +114,14 @@ void iommu_device_unregister(struct iommu_device *iommu)
int iommu_probe_device(struct device *dev)
{
const struct iommu_ops *ops = dev->bus->iommu_ops;
+ int ret = -EINVAL;
WARN_ON(dev->iommu_group);
- return ops->add_device(dev);
+ if (ops)
+ ret = ops->add_device(dev);
+
+ return ret;
}
void iommu_release_device(struct device *dev)