summaryrefslogtreecommitdiff
path: root/drivers/gpu
diff options
context:
space:
mode:
authorzhengbin <zhengbin13@huawei.com>2019-11-28 05:31:39 +0300
committerAlex Deucher <alexander.deucher@amd.com>2019-12-03 01:55:08 +0300
commit2fd4f169030a4e735af556b14586c54298acc457 (patch)
treea50d2f50da91bd5fd80c7be1a866db6c427a0126 /drivers/gpu
parentc09f5e000d1e96de95da1aae2ce7ba25d3d207a7 (diff)
downloadlinux-2fd4f169030a4e735af556b14586c54298acc457.tar.xz
drm/amd/display: Remove unneeded semicolon in hdcp.c
Fixes coccicheck warning: drivers/gpu/drm/amd/display/modules/hdcp/hdcp.c:506:2-3: Unneeded semicolon Reviewed-by: Harry Wentland <harry.wentland@amd.com> Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: zhengbin <zhengbin13@huawei.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/amd/display/modules/hdcp/hdcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/modules/hdcp/hdcp.c b/drivers/gpu/drm/amd/display/modules/hdcp/hdcp.c
index cbb5e9c063ec..8aa528e874c4 100644
--- a/drivers/gpu/drm/amd/display/modules/hdcp/hdcp.c
+++ b/drivers/gpu/drm/amd/display/modules/hdcp/hdcp.c
@@ -503,7 +503,7 @@ enum mod_hdcp_operation_mode mod_hdcp_signal_type_to_operation_mode(
break;
default:
break;
- };
+ }
return mode;
}