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

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

Merge "drm/msm/dp: fix timeslot programming error for mst streams" into dev/msm-4.14-display

parents a8aadbbd 1b8cc161
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1591,10 +1591,10 @@ static void dp_catalog_ctrl_channel_alloc(struct dp_catalog_ctrl *ctrl,

	ch_start_slot = ch_start_slot - 1;
	for (i = 0; i < tot_slot_cnt; i++) {
		if (ch_start_slot < 33) {
		if (ch_start_slot < 32) {
			slot_reg_1 |= BIT(ch_start_slot);
		} else {
			slot = ch_start_slot - 33;
			slot = ch_start_slot - 32;
			slot_reg_2 |= BIT(slot);
		}
		ch_start_slot++;