Commit 29c9dece authored by Christian König's avatar Christian König

drm/qxl: don't allocate a dma_address array

That seems to be unused.
Signed-off-by: default avatarChristian König <christian.koenig@amd.com>
Reviewed-by: default avatarDavid Airlie <airlied@redhat.com>
Link: https://patchwork.freedesktop.org/patch/408787/
parent 8075c300
......@@ -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_tt_init(ttm, bo, page_flags, ttm_cached)) {
kfree(ttm);
return NULL;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment