Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 25c22b91 authored by Jayant Shekhar's avatar Jayant Shekhar
Browse files

msm: mdss: Put smmu interface errors under pr_err



Some of the smmu interfaces error are under pr_debug
in splash logo path. Put them under pr_err.

Change-Id: I1805a4a00e3c2a2d2ed1772e84759c301b56b115
Signed-off-by: default avatarJayant Shekhar <jshekhar@codeaurora.org>
parent 823d04d6
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -175,7 +175,7 @@ static int mdss_mdp_splash_iommu_attach(struct msm_fb_data_type *mfd)

	ret = mdss_smmu_set_attribute(MDSS_IOMMU_DOMAIN_UNSECURE, EARLY_MAP, 1);
	if (ret) {
		pr_debug("mdss set attribute failed for early map\n");
		pr_err("mdss set attribute failed for early map\n");
		goto end;
	}

@@ -198,6 +198,9 @@ static int mdss_mdp_splash_iommu_attach(struct msm_fb_data_type *mfd)
	}

	ret = mdss_smmu_set_attribute(MDSS_IOMMU_DOMAIN_UNSECURE, EARLY_MAP, 0);
	if (ret)
		pr_err("mdss reset attribute failed for early map\n");

end:
	mdata->handoff_pending = true;