Skip to content

Commit ba93c35

Browse files
JuliaLawalljoergroedel
authored andcommitted
iommu/msm: Reduce indentation
Delete tab aligning a statement with the right hand side of a preceding assignment rather than the left hand side. Found with the help of Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Joerg Roedel <jroedel@suse.de>
1 parent bfeffd1 commit ba93c35

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

drivers/iommu/msm_iommu.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -461,10 +461,10 @@ static int msm_iommu_attach_dev(struct iommu_domain *domain, struct device *dev)
461461
master->num =
462462
msm_iommu_alloc_ctx(iommu->context_map,
463463
0, iommu->ncb);
464-
if (IS_ERR_VALUE(master->num)) {
465-
ret = -ENODEV;
466-
goto fail;
467-
}
464+
if (IS_ERR_VALUE(master->num)) {
465+
ret = -ENODEV;
466+
goto fail;
467+
}
468468
config_mids(iommu, master);
469469
__program_context(iommu->base, master->num,
470470
priv);

0 commit comments

Comments
 (0)