disp: msm: sde: fix cwb lm allocation failures in RM

This change corrects the conditional check in commit 2859b760a414
("disp: msm: sde: proper allocation of dcwb for LMs") with respect
to DCWB mixer allocation in RM.

Change-Id: I83fd39ed366774f20046b8f9c0e6959116b541ee
Signed-off-by: Mahadevan <quic_mahap@quicinc.com>
此提交包含在:
Mahadevan
2022-02-15 20:26:33 +05:30
提交者 Gerrit - the friendly Code Review server
父節點 04edecd269
當前提交 a1f4bdb7d9

查看文件

@@ -2408,13 +2408,13 @@ static int _sde_rm_populate_requirements(
SDE_DEBUG("top_ctrl: 0x%llX num_h_tiles: %d\n", reqs->top_ctrl,
reqs->hw_res.display_num_of_h_tiles);
SDE_DEBUG("num_lm: %d num_ctl: %d topology: %d split_display: %d\n",
SDE_DEBUG("num_lm: %d num_ctl: %d topology: %d split_display: %d mask: 0x%llX\n",
reqs->topology->num_lm, reqs->topology->num_ctl,
reqs->topology->top_name,
reqs->topology->needs_split_display);
reqs->topology->needs_split_display, reqs->conn_lm_mask);
SDE_EVT32(mode->hdisplay, rm->lm_max_width, reqs->topology->num_lm,
reqs->top_ctrl, reqs->topology->top_name,
reqs->topology->num_ctl);
reqs->topology->num_ctl, reqs->conn_lm_mask);
return 0;
}