Merge "drm: msm: remove hdcp related error messages"

This commit is contained in:
Linux Build Service Account 2018-08-28 04:02:54 -07:00 committed by Gerrit - the friendly Code Review server
commit b407bf5fca

View file

@ -591,7 +591,10 @@ static void sde_hdmi_update_hdcp_info(struct drm_connector *connector)
DEV_ERR("%s: invalid input\n", __func__);
return;
}
if (display->skip_ddc) {
display->sink_hdcp22_support = false;
display->hdcp22_present = false;
} else {
/* check first if hdcp2p2 is supported */
fd = display->hdcp_feat_data[SDE_HDCP_2P2];
if (fd)
@ -605,7 +608,7 @@ static void sde_hdmi_update_hdcp_info(struct drm_connector *connector)
display->hdcp22_present = ops->feature_supported(fd);
else
display->hdcp22_present = false;
}
/* if hdcp22_present is true, src supports hdcp 2p2 */
if (display->hdcp22_present)
display->src_hdcp22_support = true;