diff options
author | 2019-11-28 10:31:39 +0800 | |
---|---|---|
committer | 2019-12-02 17:55:08 -0500 | |
commit | 2fd4f169030a4e735af556b14586c54298acc457 (patch) | |
tree | a50d2f50da91bd5fd80c7be1a866db6c427a0126 /drivers/gpu/drm/amd/display | |
parent | drm/amd/display: Remove unneeded semicolon in bios_parser2.c (diff) | |
download | linux-dev-2fd4f169030a4e735af556b14586c54298acc457.tar.xz linux-dev-2fd4f169030a4e735af556b14586c54298acc457.zip |
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/drm/amd/display')
-rw-r--r-- | drivers/gpu/drm/amd/display/modules/hdcp/hdcp.c | 2 |
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; } |