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

Commit 17069898 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: mdss: Avoid incorrect status while parsing dsi topology"

parents 7a8bd778 143b89ba
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1588,8 +1588,9 @@ static int mdss_dsi_parse_topology_config(struct device_node *np,
				goto end;
			}
		}
		rc = of_property_read_string(cfg_np, "qcom,split-mode", &data);
		if (!rc && !strcmp(data, "pingpong-split"))

		if (!of_property_read_string(cfg_np, "qcom,split-mode",
		    &data) && !strcmp(data, "pingpong-split"))
			pinfo->use_pingpong_split = true;

		if (((timing->lm_widths[0]) || (timing->lm_widths[1])) &&