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

Commit a067955a authored by Patrick Daly's avatar Patrick Daly
Browse files

arm64: mm: dma-mapping: Use correct dma_ops



The name of the default dma_ops changed to arm64_swiotlb_dma_ops. Fix it.

Change-Id: Id528537848f1349731a1c28816edf49af32d9677
Signed-off-by: default avatarPatrick Daly <pdaly@codeaurora.org>
parent d550e868
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1057,7 +1057,7 @@ static int arm_iommu_get_dma_cookie(struct device *dev,
	iommu_domain_get_attr(mapping->domain, DOMAIN_ATTR_FAST, &is_fast);

	if (s1_bypass)
		mapping->ops = &swiotlb_dma_ops;
		mapping->ops = &arm64_swiotlb_dma_ops;
	else if (is_fast)
		err = fast_smmu_init_mapping(dev, mapping);
	else