]> Git Repo - linux.git/commitdiff
drm/amdgpu/vcn:Fix uninitialized symbol error
authorJames Zhu <[email protected]>
Tue, 16 Oct 2018 14:06:00 +0000 (10:06 -0400)
committerAlex Deucher <[email protected]>
Wed, 17 Oct 2018 21:13:07 +0000 (16:13 -0500)
ret_code should be initialized with 0. The check of read/write
ptr should be activate when UVD_POWER_STATUS_TILES is off.

Signed-off-by: James Zhu <[email protected]>
Acked-by: Alex Deucher <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
drivers/gpu/drm/amd/amdgpu/vcn_v1_0.c

index bc6470668057725abd11c25d37dfb146bac1f108..eae90922fdbe0f4356be31c4fd16eeb6846409a2 100644 (file)
@@ -1165,14 +1165,14 @@ static int vcn_v1_0_stop_spg_mode(struct amdgpu_device *adev)
 
 static int vcn_v1_0_stop_dpg_mode(struct amdgpu_device *adev)
 {
-       int ret_code;
+       int ret_code = 0;
 
        /* Wait for power status to be UVD_POWER_STATUS__UVD_POWER_STATUS_TILES_OFF */
        SOC15_WAIT_ON_RREG(UVD, 0, mmUVD_POWER_STATUS,
                        UVD_POWER_STATUS__UVD_POWER_STATUS_TILES_OFF,
                        UVD_POWER_STATUS__UVD_POWER_STATUS_MASK, ret_code);
 
-       if (ret_code) {
+       if (!ret_code) {
                int tmp = RREG32_SOC15(UVD, 0, mmUVD_RBC_RB_WPTR) & 0x7FFFFFFF;
                /* wait for read ptr to be equal to write ptr */
                SOC15_WAIT_ON_RREG(UVD, 0, mmUVD_RBC_RB_RPTR, tmp, 0xFFFFFFFF, ret_code);
This page took 0.059815 seconds and 4 git commands to generate.