aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_object.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
index fd271f9746a2..728e15e5d68a 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
@@ -912,7 +912,7 @@ int amdgpu_bo_unpin(struct amdgpu_bo *bo)
912 struct ttm_operation_ctx ctx = { false, false }; 912 struct ttm_operation_ctx ctx = { false, false };
913 int r, i; 913 int r, i;
914 914
915 if (!bo->pin_count) { 915 if (WARN_ON_ONCE(!bo->pin_count)) {
916 dev_warn(adev->dev, "%p unpin not necessary\n", bo); 916 dev_warn(adev->dev, "%p unpin not necessary\n", bo);
917 return 0; 917 return 0;
918 } 918 }