Merge "disp: msm: Check QSEECOM response only if message length is not 0"
This commit is contained in:

committed by
Gerrit - the friendly Code Review server

commit
16282cc5e4
@@ -598,7 +598,10 @@ static void sde_hdcp_2x_msg_recvd(struct sde_hdcp_2x_ctrl *hdcp)
|
|||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
out_msg = (u32)hdcp->app_data.response.data[0];
|
if (hdcp->app_data.response.length == 0)
|
||||||
|
out_msg = INVALID_MESSAGE;
|
||||||
|
else
|
||||||
|
out_msg = (u32)hdcp->app_data.response.data[0];
|
||||||
|
|
||||||
pr_debug("[tz]: %s\n", sde_hdcp_2x_message_name(out_msg));
|
pr_debug("[tz]: %s\n", sde_hdcp_2x_message_name(out_msg));
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user