diff options
| author | Alex Deucher <[email protected]> | 2016-12-07 21:14:38 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2016-12-08 19:12:19 +0000 |
| commit | 7fe285769cf64ff3029eed01ba4e1c020cf0db10 (patch) | |
| tree | 0b80571420733f9646fd7306a278fe9c6dca6a73 /drivers/gpu/drm/amd/amdgpu/amdgpu_display.c | |
| parent | drm/amd/powerplay: use pr_debug to print function not implemented message (diff) | |
| download | kernel-7fe285769cf64ff3029eed01ba4e1c020cf0db10.tar.gz kernel-7fe285769cf64ff3029eed01ba4e1c020cf0db10.zip | |
drm/amdgpu: use pin rather than pin_restricted in a few cases
We don't require a resticted pinning in these cases, so just
use plain pin.
Reviewed-by: Edward O'Callaghan <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_display.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c index 741144fcc7bc..581601ca6b89 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_display.c @@ -187,7 +187,7 @@ int amdgpu_crtc_page_flip_target(struct drm_crtc *crtc, goto cleanup; } - r = amdgpu_bo_pin_restricted(new_abo, AMDGPU_GEM_DOMAIN_VRAM, 0, 0, &base); + r = amdgpu_bo_pin(new_abo, AMDGPU_GEM_DOMAIN_VRAM, &base); if (unlikely(r != 0)) { r = -EINVAL; DRM_ERROR("failed to pin new abo buffer before flip\n"); |
