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

Commit 3d8bbf36 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" into dev/msm-4.14-display

parents 4bbf5f3d 6284b08f
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -3006,9 +3006,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)) {
@@ -3030,6 +3027,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;
}