aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorzhengbin <[email protected]>2019-11-28 02:31:37 +0000
committerAlex Deucher <[email protected]>2019-12-02 22:55:08 +0000
commit4c56feac0d47b0cf620a8f2e62c1c9cda8e22e54 (patch)
treede36e9fede3eb03f85c6007556d84c6ae2241965
parentdrm/amd/powerplay: Remove unneeded variable 'ret' in amdgpu_smu.c (diff)
downloadkernel-4c56feac0d47b0cf620a8f2e62c1c9cda8e22e54.tar.gz
kernel-4c56feac0d47b0cf620a8f2e62c1c9cda8e22e54.zip
drm/amd/display: Remove unneeded semicolon in bios_parser.c
Fixes coccicheck warning: drivers/gpu/drm/amd/display/dc/bios/bios_parser.c:2192:2-3: Unneeded semicolon Reviewed-by: Harry Wentland <[email protected]> Reported-by: Hulk Robot <[email protected]> Signed-off-by: zhengbin <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r--drivers/gpu/drm/amd/display/dc/bios/bios_parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/bios/bios_parser.c b/drivers/gpu/drm/amd/display/dc/bios/bios_parser.c
index 27451f2a938b..008d4d11339d 100644
--- a/drivers/gpu/drm/amd/display/dc/bios/bios_parser.c
+++ b/drivers/gpu/drm/amd/display/dc/bios/bios_parser.c
@@ -2189,7 +2189,7 @@ static uint32_t get_support_mask_for_device_id(struct device_id device_id)
break;
default:
break;
- };
+ }
/* Unidentified device ID, return empty support mask. */
return 0;