diff options
author | Dave Airlie <airlied@redhat.com> | 2012-05-23 14:08:41 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-05-23 14:08:41 +0100 |
commit | 5288b7b205ccd59ad40ef8ec270302bf94ac4697 (patch) | |
tree | 6d457f68c3607a6c331ee573dc9ccf914beb2fbb /drivers/gpu/drm/mgag200 | |
parent | 5b2ba70091c1bef1dfb3677db229dc5392dfec8c (diff) | |
download | talos-op-linux-5288b7b205ccd59ad40ef8ec270302bf94ac4697.tar.gz talos-op-linux-5288b7b205ccd59ad40ef8ec270302bf94ac4697.zip |
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/mgag200')
-rw-r--r-- | drivers/gpu/drm/mgag200/mgag200_ttm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/mgag200/mgag200_ttm.c b/drivers/gpu/drm/mgag200/mgag200_ttm.c index 12264793108f..b223dcb7a710 100644 --- a/drivers/gpu/drm/mgag200/mgag200_ttm.c +++ b/drivers/gpu/drm/mgag200/mgag200_ttm.c @@ -356,7 +356,7 @@ int mgag200_bo_create(struct drm_device *dev, int size, int align, ret = ttm_bo_init(&mdev->ttm.bdev, &mgabo->bo, size, ttm_bo_type_device, &mgabo->placement, align >> PAGE_SHIFT, 0, false, NULL, acc_size, - mgag200_bo_ttm_destroy); + NULL, mgag200_bo_ttm_destroy); if (ret) return ret; |