aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/display/modules/hdcp
diff options
context:
space:
mode:
authorTom Rix <trix@redhat.com>2020-10-27 13:07:08 -0700
committerAlex Deucher <alexander.deucher@amd.com>2020-10-30 01:03:02 -0400
commit0b924cd60d43f411f3133fbb39c1e4c82c7b2b18 (patch)
tree2e3bf77191d4615c01ad9259a64858eb4ae8c0c8 /drivers/gpu/drm/amd/display/modules/hdcp
parentdrm/amdgpu: remove unneeded semicolon (diff)
downloadlinux-dev-0b924cd60d43f411f3133fbb39c1e4c82c7b2b18.tar.xz
linux-dev-0b924cd60d43f411f3133fbb39c1e4c82c7b2b18.zip
drm/amd/display: remove unneeded semicolon
A semicolon is not needed after a switch statement. Signed-off-by: Tom Rix <trix@redhat.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/modules/hdcp')
-rw-r--r--drivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.c2
1 files changed, 1 insertions, 1 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 fb6a19d020f9..ee5230ccf3c4 100644
--- a/drivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.c
+++ b/drivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.c
@@ -280,6 +280,6 @@ char *mod_hdcp_state_id_to_str(int32_t id)
return "D2_A9_VALIDATE_STREAM_READY";
default:
return "UNKNOWN_STATE_ID";
- };
+ }
}