diff options
author | Dave Airlie <airlied@redhat.com> | 2012-05-23 09:08:41 -0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-05-23 09:08:41 -0400 |
commit | 5288b7b205ccd59ad40ef8ec270302bf94ac4697 (patch) | |
tree | 6d457f68c3607a6c331ee573dc9ccf914beb2fbb /drivers/gpu/drm/cirrus | |
parent | 5b2ba70091c1bef1dfb3677db229dc5392dfec8c (diff) |
drm: update ast/cirrus/mgag200 for change in TTM api
New drivers merged after changes were done in prime TTM code.
Fix build.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/cirrus')
-rw-r--r-- | drivers/gpu/drm/cirrus/cirrus_ttm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/cirrus/cirrus_ttm.c b/drivers/gpu/drm/cirrus/cirrus_ttm.c index ae2f08ff3808..2ebcd11a5023 100644 --- a/drivers/gpu/drm/cirrus/cirrus_ttm.c +++ b/drivers/gpu/drm/cirrus/cirrus_ttm.c | |||
@@ -357,7 +357,7 @@ int cirrus_bo_create(struct drm_device *dev, int size, int align, | |||
357 | ret = ttm_bo_init(&cirrus->ttm.bdev, &cirrusbo->bo, size, | 357 | ret = ttm_bo_init(&cirrus->ttm.bdev, &cirrusbo->bo, size, |
358 | ttm_bo_type_device, &cirrusbo->placement, | 358 | ttm_bo_type_device, &cirrusbo->placement, |
359 | align >> PAGE_SHIFT, 0, false, NULL, acc_size, | 359 | align >> PAGE_SHIFT, 0, false, NULL, acc_size, |
360 | cirrus_bo_ttm_destroy); | 360 | NULL, cirrus_bo_ttm_destroy); |
361 | if (ret) | 361 | if (ret) |
362 | return ret; | 362 | return ret; |
363 | 363 | ||