summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorMaya Erez <merez@codeaurora.org>2016-02-28 09:51:56 +0200
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-23 19:57:54 -0700
commitab30d8cc1645461e6c6c29c8d21c42d95906b332 (patch)
tree85af141a89f9bd2e59cc7574e46ed2b7bda72496 /drivers
parentffac72e679382587bca3ae2264938b40e8465ffc (diff)
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/platform/msm/msm_11ad/msm_11ad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/msm/msm_11ad/msm_11ad.c b/drivers/platform/msm/msm_11ad/msm_11ad.c
index 26d225f04111..2c1032b9ab36 100644
--- a/drivers/platform/msm/msm_11ad/msm_11ad.c
+++ b/drivers/platform/msm/msm_11ad/msm_11ad.c
@@ -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);