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

Commit 577cf2dc authored by Dhaval Patel's avatar Dhaval Patel
Browse files

msm: mdss: print debug message for optional dt property parsing



Optional dtsi properties are not present for all targets
for MDP dtsi configuration. Parsing failure for such property
should be reported under debug message instead of error message.

Change-Id: I91c966ebffd1bab3d29e047fa2ff5446e7de1b33
Signed-off-by: default avatarDhaval Patel <pdhaval@codeaurora.org>
parent ab01e731
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2426,7 +2426,7 @@ static void mdss_mdp_parse_dt_fudge_factors(struct platform_device *pdev,

	rc = mdss_mdp_parse_dt_handler(pdev, prop_name, data, 2);
	if (rc) {
		pr_err("err reading %s\n", prop_name);
		pr_debug("err reading %s\n", prop_name);
	} else {
		ff->numer = data[0];
		ff->denom = data[1];