aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/drm/ttm/ttm_bo_util.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c
index 7cc904d3a4d1..8369e35c0dce 100644
--- a/drivers/gpu/drm/ttm/ttm_bo_util.c
+++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
@@ -348,7 +348,9 @@ int ttm_bo_move_memcpy(struct ttm_buffer_object *bo,
348 if (old_iomap == NULL && ttm == NULL) 348 if (old_iomap == NULL && ttm == NULL)
349 goto out2; 349 goto out2;
350 350
351 if (ttm->state == tt_unpopulated) { 351 /* TTM might be null for moves within the same region.
352 */
353 if (ttm && ttm->state == tt_unpopulated) {
352 ret = ttm->bdev->driver->ttm_tt_populate(ttm); 354 ret = ttm->bdev->driver->ttm_tt_populate(ttm);
353 if (ret) { 355 if (ret) {
354 /* if we fail here don't nuke the mm node 356 /* if we fail here don't nuke the mm node