diff options
author | kbuild test robot <fengguang.wu@intel.com> | 2017-03-31 06:15:10 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2017-04-04 13:40:31 -0400 |
commit | ca7f65c76714e170692b3aad8d734d2b41e16b7f (patch) | |
tree | ff6e895345ab2b5f3d8ab8d7967a22f375a0e221 /drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | |
parent | ad4febd9b7a5b3e86090e5223a6ddf946a63998f (diff) |
drm/amdgpu: fix semicolon.cocci warnings
drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c:133:2-3: Unneeded semicolon
Remove unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Acked-by: Huang Rui <ray.huang@amd.com>
CC: Huang Rui <ray.huang@amd.com>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c index 4731015f6101..ed6e5799016e 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_psp.c | |||
@@ -130,7 +130,7 @@ psp_cmd_submit_buf(struct psp_context *psp, | |||
130 | 130 | ||
131 | while (*((unsigned int *)psp->fence_buf) != index) { | 131 | while (*((unsigned int *)psp->fence_buf) != index) { |
132 | msleep(1); | 132 | msleep(1); |
133 | }; | 133 | } |
134 | 134 | ||
135 | amdgpu_bo_free_kernel(&cmd_buf_bo, | 135 | amdgpu_bo_free_kernel(&cmd_buf_bo, |
136 | &cmd_buf_mc_addr, | 136 | &cmd_buf_mc_addr, |