mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 14:42:18 -04:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user