Commit 7dcebb52 authored by Thomas Hellstrom's avatar Thomas Hellstrom Committed by Dave Airlie

drm/ttm: remove failed ttm binding error printout

The driver (for example vmwgfx) may want to silently deal with the
error itself.
Signed-off-by: default avatarThomas Hellstrom <thellstrom@vmware.com>
Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 06fba6d4
...@@ -440,10 +440,8 @@ int ttm_tt_bind(struct ttm_tt *ttm, struct ttm_mem_reg *bo_mem) ...@@ -440,10 +440,8 @@ int ttm_tt_bind(struct ttm_tt *ttm, struct ttm_mem_reg *bo_mem)
return ret; return ret;
ret = be->func->bind(be, bo_mem); ret = be->func->bind(be, bo_mem);
if (ret) { if (unlikely(ret != 0))
printk(KERN_ERR TTM_PFX "Couldn't bind backend.\n");
return ret; return ret;
}
ttm->state = tt_bound; ttm->state = tt_bound;
......
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