Commit f884f6ee authored by Joerg Roedel's avatar Joerg Roedel

dmaengine: sh: rcar-dmac: Use device_iommu_mapped()

Use Use device_iommu_mapped() to check if the device is
already mapped by an IOMMU.
Acked-by: default avatarVinod Koul <vkoul@kernel.org>
Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
parent 05afde1a
......@@ -1809,7 +1809,7 @@ static int rcar_dmac_probe(struct platform_device *pdev)
* level we can't disable it selectively, so ignore channel 0 for now if
* the device is part of an IOMMU group.
*/
if (pdev->dev.iommu_group) {
if (device_iommu_mapped(&pdev->dev)) {
dmac->n_channels--;
channels_offset = 1;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment