diff options
author | Colin Ian King <[email protected]> | 2019-10-03 09:22:32 +0100 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2019-10-03 13:51:19 -0500 |
commit | d4411d793effe4959f54bdf7ffb3462338d2a9f7 (patch) | |
tree | a0661ed2cf0ba55ed025969ec2a083b943abb5b3 /drivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.c | |
parent | e3aaf0e1744e988ebd10144a36eb5619da2f4b7b (diff) |
drm/amd/display: fix spelling mistake AUTHENICATED -> AUTHENTICATED
There is a spelling mistake in the macros H1_A45_AUTHENICATED and
D1_A4_AUTHENICATED, fix these by adding the missing T.
Reviewed-by: Harry Wentland <[email protected]>
Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.c')
-rw-r--r-- | drivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.c b/drivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.c index d868f556d180..3982ced5f969 100644 --- a/drivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.c +++ b/drivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.c @@ -136,8 +136,8 @@ char *mod_hdcp_state_id_to_str(int32_t id) return "H1_A1_EXCHANGE_KSVS"; case H1_A2_COMPUTATIONS_A3_VALIDATE_RX_A6_TEST_FOR_REPEATER: return "H1_A2_COMPUTATIONS_A3_VALIDATE_RX_A6_TEST_FOR_REPEATER"; - case H1_A45_AUTHENICATED: - return "H1_A45_AUTHENICATED"; + case H1_A45_AUTHENTICATED: + return "H1_A45_AUTHENTICATED"; case H1_A8_WAIT_FOR_READY: return "H1_A8_WAIT_FOR_READY"; case H1_A9_READ_KSV_LIST: @@ -150,8 +150,8 @@ char *mod_hdcp_state_id_to_str(int32_t id) return "D1_A23_WAIT_FOR_R0_PRIME"; case D1_A2_COMPUTATIONS_A3_VALIDATE_RX_A5_TEST_FOR_REPEATER: return "D1_A2_COMPUTATIONS_A3_VALIDATE_RX_A5_TEST_FOR_REPEATER"; - case D1_A4_AUTHENICATED: - return "D1_A4_AUTHENICATED"; + case D1_A4_AUTHENTICATED: + return "D1_A4_AUTHENTICATED"; case D1_A6_WAIT_FOR_READY: return "D1_A6_WAIT_FOR_READY"; case D1_A7_READ_KSV_LIST: |