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

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

Merge "disp: msm: dp: fix locking in hotplug processing"

parents d89ef947 c11dcbf6
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -851,8 +851,7 @@ static int dp_display_process_hpd_high(struct dp_display_private *dp)
	if (dp_display_state_is(DP_STATE_CONNECTED)) {
		DP_DEBUG("dp already connected, skipping hpd high\n");
		mutex_unlock(&dp->session_lock);
		rc = -EISCONN;
		goto end;
		return -EISCONN;
	}

	dp_display_state_add(DP_STATE_CONNECTED);
+1 −1
Original line number Diff line number Diff line
@@ -1122,7 +1122,7 @@ static int dp_link_process_link_status_update(struct dp_link_private *link)
		return -EINVAL;

	DP_DEBUG("channel_eq_done = %d, clock_recovery_done = %d\n",
			drm_dp_clock_recovery_ok(link->link_status,
			drm_dp_channel_eq_ok(link->link_status,
			link->dp_link.link_params.lane_count),
			drm_dp_clock_recovery_ok(link->link_status,
			link->dp_link.link_params.lane_count));