drm/amd/display: Change ERROR to WARN for HDCP module
[Why] HDCP is a bit finicky so we try it 3 times, this leads to a case where if we fail the first time and pass the second time the error is still shown in dmesg for the first failed attempt. This leads to false positive errors. [How] Change the logging from ERROR to WARNING. Warnings are still shown in dmesg to know what went wrong. Signed-off-by: Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com> Reviewed-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
46df9931e0
commit
2e956df291
|
@ -27,7 +27,7 @@
|
|||
#define MOD_HDCP_LOG_H_
|
||||
|
||||
#ifdef CONFIG_DRM_AMD_DC_HDCP
|
||||
#define HDCP_LOG_ERR(hdcp, ...) DRM_ERROR(__VA_ARGS__)
|
||||
#define HDCP_LOG_ERR(hdcp, ...) DRM_WARN(__VA_ARGS__)
|
||||
#define HDCP_LOG_VER(hdcp, ...) DRM_DEBUG_KMS(__VA_ARGS__)
|
||||
#define HDCP_LOG_FSM(hdcp, ...) DRM_DEBUG_KMS(__VA_ARGS__)
|
||||
#define HDCP_LOG_TOP(hdcp, ...) pr_debug("[HDCP_TOP]:"__VA_ARGS__)
|
||||
|
@ -37,7 +37,7 @@
|
|||
/* default logs */
|
||||
#define HDCP_ERROR_TRACE(hdcp, status) \
|
||||
HDCP_LOG_ERR(hdcp, \
|
||||
"[Link %d] ERROR %s IN STATE %s", \
|
||||
"[Link %d] WARNING %s IN STATE %s", \
|
||||
hdcp->config.index, \
|
||||
mod_hdcp_status_to_str(status), \
|
||||
mod_hdcp_state_id_to_str(hdcp->state.id))
|
||||
|
|
Loading…
Reference in New Issue