drm/qxl: switch to ttm_sg_tt_init

The function qxl_gem_prime_import_sg_table is not fully implemented.

Signed-off-by: Christian König <christian.koenig@amd.com>
Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/403833/
This commit is contained in:
Christian König 2020-11-23 14:54:36 +01:00
parent 4c515bb187
commit 2705d14a31
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ static struct ttm_tt *qxl_ttm_tt_create(struct ttm_buffer_object *bo,
ttm = kzalloc(sizeof(struct ttm_tt), GFP_KERNEL);
if (ttm == NULL)
return NULL;
if (ttm_dma_tt_init(ttm, bo, page_flags, ttm_cached)) {
if (ttm_sg_tt_init(ttm, bo, page_flags, ttm_cached)) {
kfree(ttm);
return NULL;
}