Signed-off-by: Harry Wentland <[email protected]>
Reviewed-by: Mikita Lipski <[email protected]>
Reviewed-by: Tony Cheng <[email protected]>
Acked-by: Harry Wentland <[email protected]>
---
 drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c 
b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
index cd295a202950..55fb0b282f44 100644
--- a/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
+++ b/drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c
@@ -1331,13 +1331,16 @@ static int amdgpu_dm_initialize_drm_device(struct 
amdgpu_device *adev)
        }
 
        for (i = 0; i < dm->dc->caps.max_planes; i++) {
-               mode_info->planes[i] = kzalloc(sizeof(struct amdgpu_plane),
-                                                                GFP_KERNEL);
-               if (!mode_info->planes[i]) {
+               struct amdgpu_plane *plane;
+
+               plane = kzalloc(sizeof(struct amdgpu_plane), GFP_KERNEL);
+               mode_info->planes[i] = plane;
+
+               if (!plane) {
                        DRM_ERROR("KMS: Failed to allocate plane\n");
                        goto fail_free_planes;
                }
-               mode_info->planes[i]->base.type = mode_info->plane_type[i];
+               plane->base.type = mode_info->plane_type[i];
 
                /*
                 * HACK: IGT tests expect that each plane can only have one
-- 
2.14.1

_______________________________________________
amd-gfx mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

Reply via email to