This change is to cleanup the code style a bit.
Signed-off-by: Bernard Zhao <bernard@vivo.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
 
        *data = kmalloc(sizeof(struct amdgpu_virt_ras_err_handler_data), GFP_KERNEL);
        if (!*data)
-               return -ENOMEM;
+               goto data_failure;
 
        bps = kmalloc_array(align_space, sizeof((*data)->bps), GFP_KERNEL);
-       bps_bo = kmalloc_array(align_space, sizeof((*data)->bps_bo), GFP_KERNEL);
+       if (!bps)
+               goto bps_failure;
 
-       if (!bps || !bps_bo) {
-               kfree(bps);
-               kfree(bps_bo);
-               kfree(*data);
-               return -ENOMEM;
-       }
+       bps_bo = kmalloc_array(align_space, sizeof((*data)->bps_bo), GFP_KERNEL);
+       if (!bps_bo)
+               goto bps_bo_failure;
 
        (*data)->bps = bps;
        (*data)->bps_bo = bps_bo;
        virt->ras_init_done = true;
 
        return 0;
+
+bps_bo_failure:
+       kfree(bps);
+bps_failure:
+       kfree(*data);
+data_failure:
+       return -ENOMEM;
 }
 
 static void amdgpu_virt_ras_release_bp(struct amdgpu_device *adev)