aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZheng Bin <[email protected]>2020-04-24 15:56:20 +0800
committerAlex Deucher <[email protected]>2020-04-27 15:51:14 -0400
commitd18ba57c725e71b612f195e527f202a182649595 (patch)
tree6bd438c9d64115c54a18000766c08fde88ae1ec3
parentd971d42f0655fe448e34bcdbbe27ae2346301380 (diff)
drm/amdgpu: Remove unneeded semicolon
Fixes coccicheck warning: drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c:2534:2-3: Unneeded semicolon Reported-by: Hulk Robot <[email protected]> Signed-off-by: Zheng Bin <[email protected]> Signed-off-by: Alex Deucher <[email protected]> Reviewed-by: Christian König <[email protected]>
-rw-r--r--drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
index 6c5ba34b98d8..b7b51037b1cf 100644
--- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
+++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
@@ -2531,7 +2531,7 @@ static void gfx_v9_0_init_sq_config(struct amdgpu_device *adev)
break;
default:
break;
- };
+ }
}
static void gfx_v9_0_constants_init(struct amdgpu_device *adev)