Commit bc2fe69f authored by Alex Hung's avatar Alex Hung Committed by Alex Deucher

drm/amd/display: Revert "Check HDCP returned status"

This reverts commit 5d93060d due to a
power consumption regression.
Reviewed-by: default avatarRodrigo Siqueira <rodrigo.siqueira@amd.com>
Signed-off-by: default avatarJerry Zuo <jerry.zuo@amd.com>
Signed-off-by: default avatarAlex Hung <alex.hung@amd.com>
Tested-by: default avatarDaniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent e8d77cfd
...@@ -432,18 +432,18 @@ static enum mod_hdcp_status authenticated_dp(struct mod_hdcp *hdcp, ...@@ -432,18 +432,18 @@ static enum mod_hdcp_status authenticated_dp(struct mod_hdcp *hdcp,
goto out; goto out;
} }
if (!mod_hdcp_execute_and_set(mod_hdcp_read_bstatus, mod_hdcp_execute_and_set(mod_hdcp_read_bstatus,
&input->bstatus_read, &status, &input->bstatus_read, &status,
hdcp, "bstatus_read")) hdcp, "bstatus_read");
goto out;
if (!mod_hdcp_execute_and_set(check_link_integrity_dp, mod_hdcp_execute_and_set(check_link_integrity_dp,
&input->link_integrity_check, &status, &input->link_integrity_check, &status,
hdcp, "link_integrity_check")) hdcp, "link_integrity_check");
goto out;
if (!mod_hdcp_execute_and_set(check_no_reauthentication_request_dp, mod_hdcp_execute_and_set(check_no_reauthentication_request_dp,
&input->reauth_request_check, &status, &input->reauth_request_check, &status,
hdcp, "reauth_request_check")) hdcp, "reauth_request_check");
goto out;
out: out:
return status; return status;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment