drm/amdgpu: fix r initial values
authorVictor Zhao <Victor.Zhao@amd.com>
Tue, 27 Apr 2021 09:52:56 +0000 (17:52 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 29 Apr 2021 04:02:40 +0000 (00:02 -0400)
Sriov gets suspend of IP block <dce_virtual> failed as return
value was not initialized.

v2: return 0 directly to align original code semantic before this
was broken out into a separate helper function instead of setting
initial values

Signed-off-by: Victor Zhao <Victor.Zhao@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
drivers/gpu/drm/amd/amdgpu/amdgpu_display.c

index 9a2f811..4fbae20 100644 (file)
@@ -1399,7 +1399,7 @@ int amdgpu_display_suspend_helper(struct amdgpu_device *adev)
                        }
                }
        }
-       return r;
+       return 0;
 }
 
 int amdgpu_display_resume_helper(struct amdgpu_device *adev)