Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ef4815ab authored by Martin Hostettler's avatar Martin Hostettler Committed by Tony Lindgren
Browse files

omap: iommu: Gracefully fail iommu_enable if no arch_iommu is registered



In a modular build of the iommu code it's possible that the arch iommu code
isn't loaded when trying to enable the iommu. Instead of blindly following a
null pointer return -NODEV in that case.

Signed-off-by: default avatarMartin Hostettler <martin@neutronstar.dyndns.org>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 7cab8713
Loading
Loading
Loading
Loading
+3 −0
Original line number Original line Diff line number Diff line
@@ -104,6 +104,9 @@ static int iommu_enable(struct iommu *obj)
	if (!obj)
	if (!obj)
		return -EINVAL;
		return -EINVAL;


	if (!arch_iommu)
		return -ENODEV;

	clk_enable(obj->clk);
	clk_enable(obj->clk);


	err = arch_iommu->enable(obj);
	err = arch_iommu->enable(obj);