diff options
author | YueHaibing <yuehaibing@huawei.com> | 2018-09-29 07:39:14 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2018-10-10 15:49:42 -0400 |
commit | 50325c0be109c7f2f21d6d66f31baed46a0c3443 (patch) | |
tree | 633c3dea4bd6b257ee7e3be37a62157f1417176f | |
parent | ae5c59a83b84b46aeabde95495a50dfec101d7d6 (diff) |
drm/amdgpu: remove set but not used variable 'ring' in psp_v11_0_ring_stop
Fixes gcc '-Wunused-but-set-variable' warning:
drivers/gpu/drm/amd/amdgpu/psp_v11_0.c: In function 'psp_v11_0_ring_stop':
drivers/gpu/drm/amd/amdgpu/psp_v11_0.c:309:19: warning:
variable 'ring' set but not used [-Wunused-but-set-variable]
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/psp_v11_0.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/psp_v11_0.c b/drivers/gpu/drm/amd/amdgpu/psp_v11_0.c index 9217af00bc8d..3f3fac2d50cd 100644 --- a/drivers/gpu/drm/amd/amdgpu/psp_v11_0.c +++ b/drivers/gpu/drm/amd/amdgpu/psp_v11_0.c | |||
@@ -306,11 +306,8 @@ static int psp_v11_0_ring_stop(struct psp_context *psp, | |||
306 | enum psp_ring_type ring_type) | 306 | enum psp_ring_type ring_type) |
307 | { | 307 | { |
308 | int ret = 0; | 308 | int ret = 0; |
309 | struct psp_ring *ring; | ||
310 | struct amdgpu_device *adev = psp->adev; | 309 | struct amdgpu_device *adev = psp->adev; |
311 | 310 | ||
312 | ring = &psp->km_ring; | ||
313 | |||
314 | /* Write the ring destroy command to C2PMSG_64 */ | 311 | /* Write the ring destroy command to C2PMSG_64 */ |
315 | WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_64, GFX_CTRL_CMD_ID_DESTROY_RINGS); | 312 | WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_64, GFX_CTRL_CMD_ID_DESTROY_RINGS); |
316 | 313 | ||