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

Commit eb0c4d1d 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/dsi-staging: tie up dsi irq control to core clock"

parents 4553c5dc 6c243ce9
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -3148,9 +3148,6 @@ int dsi_post_clkon_cb(void *priv,
				__func__, rc);
			goto error;
		}

		/* enable dsi to serve irqs */
		dsi_display_ctrl_irq_update(display, true);
	}

	if ((clk & DSI_LINK_CLK) && (l_type & DSI_LINK_HS_CLK)) {
@@ -3172,6 +3169,11 @@ int dsi_post_clkon_cb(void *priv,
			}
		}
	}

	/* enable dsi to serve irqs */
	if (clk & DSI_CORE_CLK)
		dsi_display_ctrl_irq_update(display, true);

error:
	return rc;
}