A call to ttm_bo_unref() clears the supplied pointer to NULL, while
ttm_bo_put() does not. None of the converted call sites requires the
pointer to become NULL, so the respective assign operations has been
left out from the patch.
Signed-off-by: Thomas Zimmermann <contact@tzimmermann.org>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
                if (!resv)
                        ttm_bo_unreserve(bo);
 
-               ttm_bo_unref(&bo);
+               ttm_bo_put(bo);
                return ret;
        }
 
 
        struct ttm_transfer_obj *fbo;
 
        fbo = container_of(bo, struct ttm_transfer_obj, base);
-       ttm_bo_unref(&fbo->bo);
+       ttm_bo_put(fbo->bo);
        kfree(fbo);
 }
 
                        bo->ttm = NULL;
 
                ttm_bo_unreserve(ghost_obj);
-               ttm_bo_unref(&ghost_obj);
+               ttm_bo_put(ghost_obj);
        }
 
        *old_mem = *new_mem;
                        bo->ttm = NULL;
 
                ttm_bo_unreserve(ghost_obj);
-               ttm_bo_unref(&ghost_obj);
+               ttm_bo_put(ghost_obj);
 
        } else if (from->flags & TTM_MEMTYPE_FLAG_FIXED) {
 
        bo->ttm = NULL;
 
        ttm_bo_unreserve(ghost);
-       ttm_bo_unref(&ghost);
+       ttm_bo_put(ghost);
 
        return 0;
 }
 
                up_read(&vmf->vma->vm_mm->mmap_sem);
                (void) dma_fence_wait(bo->moving, true);
                ttm_bo_unreserve(bo);
-               ttm_bo_unref(&bo);
+               ttm_bo_put(bo);
                goto out_unlock;
        }
 
                                ttm_bo_get(bo);
                                up_read(&vmf->vma->vm_mm->mmap_sem);
                                (void) ttm_bo_wait_unreserved(bo);
-                               ttm_bo_unref(&bo);
+                               ttm_bo_put(bo);
                        }
 
                        return VM_FAULT_RETRY;
 {
        struct ttm_buffer_object *bo = (struct ttm_buffer_object *)vma->vm_private_data;
 
-       ttm_bo_unref(&bo);
+       ttm_bo_put(bo);
        vma->vm_private_data = NULL;
 }
 
        vma->vm_flags |= VM_IO | VM_DONTEXPAND | VM_DONTDUMP;
        return 0;
 out_unref:
-       ttm_bo_unref(&bo);
+       ttm_bo_put(bo);
        return ret;
 }
 EXPORT_SYMBOL(ttm_bo_mmap);