iommu/msm: Reduce indentation
authorJulia Lawall <Julia.Lawall@lip6.fr>
Sun, 30 Dec 2018 15:53:15 +0000 (16:53 +0100)
committerJoerg Roedel <jroedel@suse.de>
Fri, 11 Jan 2019 11:25:30 +0000 (12:25 +0100)
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>
drivers/iommu/msm_iommu.c

index fc4270733f11fad52179aecf7206fa02ce53b81d..6dde3a9db92ec9d5fb18b5fa07aa18773fcb35b3 100644 (file)
@@ -461,10 +461,10 @@ static int msm_iommu_attach_dev(struct iommu_domain *domain, struct device *dev)
                                master->num =
                                        msm_iommu_alloc_ctx(iommu->context_map,
                                                            0, iommu->ncb);
-                                       if (IS_ERR_VALUE(master->num)) {
-                                               ret = -ENODEV;
-                                               goto fail;
-                                       }
+                               if (IS_ERR_VALUE(master->num)) {
+                                       ret = -ENODEV;
+                                       goto fail;
+                               }
                                config_mids(iommu, master);
                                __program_context(iommu->base, master->num,
                                                  priv);