Skip to content

Commit

Permalink
drm/amd/display: Return the correct HDCP error code
Browse files Browse the repository at this point in the history
[WHY & HOW]
If the display is null when creating an HDCP session, return a proper
error code.

Cc: Mario Limonciello <mario.limonciello@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
Acked-by: Alex Hung <alex.hung@amd.com>
Signed-off-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Tested-by: Daniel Wheeler <daniel.wheeler@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
  • Loading branch information
rodrigosiqueira authored and alexdeucher committed Mar 20, 2024
1 parent 2d7f3d1 commit e64b3f5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/gpu/drm/amd/display/modules/hdcp/hdcp_psp.c
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,9 @@ enum mod_hdcp_status mod_hdcp_hdcp2_create_session(struct mod_hdcp *hdcp)
hdcp_cmd = (struct ta_hdcp_shared_memory *)psp->hdcp_context.context.mem_context.shared_buf;
memset(hdcp_cmd, 0, sizeof(struct ta_hdcp_shared_memory));

if (!display)
return MOD_HDCP_STATUS_DISPLAY_NOT_FOUND;

hdcp_cmd->in_msg.hdcp2_create_session_v2.display_handle = display->index;

if (hdcp->connection.link.adjust.hdcp2.force_type == MOD_HDCP_FORCE_TYPE_0)
Expand Down

0 comments on commit e64b3f5

Please sign in to comment.