summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/ast
diff options
context:
space:
mode:
authorDave Airlie2014-10-01 11:27:38 +0200
committerDave Airlie2014-10-01 11:27:38 +0200
commit7a42e83d36d2d0a68622320900dc4e880b1d920a (patch)
tree3671f64e59894284cb7a946d9ab981a1f71e669b /drivers/gpu/drm/ast
parentMerge tag 'topic/core-stuff-2014-09-29' of git://anongit.freedesktop.org/drm-... (diff)
parentdrm/nouveau: export reservation_object from dmabuf to ttm (diff)
downloadkernel-qcow2-linux-7a42e83d36d2d0a68622320900dc4e880b1d920a.tar.gz
kernel-qcow2-linux-7a42e83d36d2d0a68622320900dc4e880b1d920a.tar.xz
kernel-qcow2-linux-7a42e83d36d2d0a68622320900dc4e880b1d920a.zip
Merge branch 'for-airlied-next' of git://people.freedesktop.org/~mlankhorst/linux into drm-next
fixups for nouveau and fencing * 'for-airlied-next' of git://people.freedesktop.org/~mlankhorst/linux: drm/nouveau: export reservation_object from dmabuf to ttm drm/ttm: add reservation_object as argument to ttm_bo_init drm: Pass dma-buf as argument to gem_prime_import_sg_table drm/nouveau: assign fence_chan->name correctly drm/nouveau: specify if interruptible wait is desired in nouveau_fence_sync drm/nouveau: bump driver patchlevel to 1.2.1
Diffstat (limited to 'drivers/gpu/drm/ast')
-rw-r--r--drivers/gpu/drm/ast/ast_ttm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ast/ast_ttm.c b/drivers/gpu/drm/ast/ast_ttm.c
index c65d432f42c4..08f82eae6939 100644
--- a/drivers/gpu/drm/ast/ast_ttm.c
+++ b/drivers/gpu/drm/ast/ast_ttm.c
@@ -339,7 +339,7 @@ int ast_bo_create(struct drm_device *dev, int size, int align,
ret = ttm_bo_init(&ast->ttm.bdev, &astbo->bo, size,
ttm_bo_type_device, &astbo->placement,
align >> PAGE_SHIFT, false, NULL, acc_size,
- NULL, ast_bo_ttm_destroy);
+ NULL, NULL, ast_bo_ttm_destroy);
if (ret)
return ret;