projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2111a5f
)
drm/amdgpu: Remove unneeded semicolon in gfx_v10_0.c
author
zhengbin
<zhengbin13@huawei.com>
Sat, 14 Dec 2019 09:02:23 +0000
(17:02 +0800)
committer
Alex Deucher
<alexander.deucher@amd.com>
Wed, 18 Dec 2019 21:09:11 +0000
(16:09 -0500)
Fixes coccicheck warning:
drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c:1967:2-3: Unneeded semicolon
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: zhengbin <zhengbin13@huawei.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
patch
|
blob
|
history
diff --git
a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
index 53421993cde5c05bb46c26e08d17972ac3fa803a..721f1f7d6cb157519349b082a37fb0832803ba2f 100644
(file)
--- a/
drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
+++ b/
drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c
@@
-1951,7
+1951,7
@@
static int gfx_v10_0_parse_rlc_toc(struct amdgpu_device *adev)
rlc_autoload_info[rlc_toc->id].size = rlc_toc->size * 4;
rlc_toc++;
- }
;
+ }
return 0;
}