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

Commit a477ce5a authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "drm/msm/dp: use correct data clock rate"

parents 6633ec93 ab7585f4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1988,6 +1988,8 @@ struct dp_debug *dp_debug_get(struct dp_debug_in *in)
	dp_debug->dp_mst_connector_list.conn = NULL;
	dp_debug->dp_mst_connector_list.debug_en = false;

	dp_debug->max_pclk_khz = debug->parser->max_pclk_khz;

	return dp_debug;
error:
	return ERR_PTR(rc);
+2 −1
Original line number Diff line number Diff line
@@ -652,7 +652,8 @@ static int dp_display_process_hpd_high(struct dp_display_private *dp)

	dp->is_connected = true;

	dp->dp_display.max_pclk_khz = dp->parser->max_pclk_khz;
	dp->dp_display.max_pclk_khz = min(dp->parser->max_pclk_khz,
					dp->debug->max_pclk_khz);

	dp_display_host_init(dp);