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

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

Merge "disp: msm: hdcp: reset authentication state for client initiated abort"

parents 64cb16a0 d665246e
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -1057,8 +1057,10 @@ static void sde_hdcp_1x_auth_work(struct work_struct *work)
		return;
	}

	if (atomic_read(&hdcp->abort))
	if (atomic_read(&hdcp->abort)) {
		rc = -EINVAL;
		goto end;
	}

	hdcp->sink_r0_ready = false;
	hdcp->reauth = false;
@@ -1495,6 +1497,8 @@ static void sde_hdcp_1x_abort(void *data, bool abort)
	atomic_set(&hdcp->abort, abort);
	cancel_delayed_work_sync(&hdcp->hdcp_auth_work);
	flush_workqueue(hdcp->workq);
	if (sde_hdcp_1x_state(HDCP_STATE_AUTHENTICATING))
		hdcp->hdcp_state = HDCP_STATE_AUTH_FAIL;
}

void *sde_hdcp_1x_init(struct sde_hdcp_init_data *init_data)