msm_11ad: remove order parameter from arm_iommu_create_mapping()

Align msm_11ad driver with commit:
5d186c1a1f152c480b51772764d53f66c2a657ca - arm64: dma-mapping:
remove order parameter from arm_iommu_create_mapping()

Signed-off-by: Maya Erez <merez@codeaurora.org>
This commit is contained in:
Maya Erez 2016-02-28 09:51:56 +02:00 committed by David Keitel
parent ffac72e679
commit ab30d8cc16

View file

@ -133,7 +133,7 @@ static int msm_11ad_smmu_init(struct msm11ad_ctx *ctx)
return 0;
ctx->mapping = arm_iommu_create_mapping(&platform_bus_type,
SMMU_BASE, SMMU_SIZE, 0);
SMMU_BASE, SMMU_SIZE);
if (IS_ERR_OR_NULL(ctx->mapping)) {
rc = PTR_ERR(ctx->mapping) ?: -ENODEV;
dev_err(ctx->dev, "Failed to create IOMMU mapping (%d)\n", rc);