drm/amdgpu: remove set but not used variable 'ring' in psp_v11_0_ring_stop
authorYueHaibing <yuehaibing@huawei.com>
Sat, 29 Sep 2018 11:39:14 +0000 (11:39 +0000)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 10 Oct 2018 19:49:42 +0000 (14:49 -0500)
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>
drivers/gpu/drm/amd/amdgpu/psp_v11_0.c

index 9217af00bc8d04b50b1b6c20c9fb5a70181889ef..3f3fac2d50cdf19e002a5ad7773d68003ab5aa57 100644 (file)
@@ -306,11 +306,8 @@ static int psp_v11_0_ring_stop(struct psp_context *psp,
                              enum psp_ring_type ring_type)
 {
        int ret = 0;
-       struct psp_ring *ring;
        struct amdgpu_device *adev = psp->adev;
 
-       ring = &psp->km_ring;
-
        /* Write the ring destroy command to C2PMSG_64 */
        WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_64, GFX_CTRL_CMD_ID_DESTROY_RINGS);