diff options
author | Dave Airlie <airlied@redhat.com> | 2014-12-24 04:11:17 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2014-12-24 04:13:22 +0100 |
commit | da6b51d007da17fd394405055e2f0109ec5f05f4 (patch) | |
tree | 8ec667f89310d324e87ca41343fb77aecd212812 /drivers/gpu/drm/nouveau/nouveau_gem.c | |
parent | Merge tag 'amdkfd-fixes-2014-12-23' of git://people.freedesktop.org/~gabbayo/... (diff) | |
download | linux-da6b51d007da17fd394405055e2f0109ec5f05f4.tar.xz linux-da6b51d007da17fd394405055e2f0109ec5f05f4.zip |
Revert "drm/gem: Warn on illegal use of the dumb buffer interface v2"
This reverts commit 355a70183848f21198e9f6296bd646df3478a26d.
This had some bad side effects under normal operation, and should
have been dropped earlier.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_gem.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_gem.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_gem.c b/drivers/gpu/drm/nouveau/nouveau_gem.c index 28d51a22a4bf..42c34babc2e5 100644 --- a/drivers/gpu/drm/nouveau/nouveau_gem.c +++ b/drivers/gpu/drm/nouveau/nouveau_gem.c @@ -444,9 +444,6 @@ validate_list(struct nouveau_channel *chan, struct nouveau_cli *cli, list_for_each_entry(nvbo, list, entry) { struct drm_nouveau_gem_pushbuf_bo *b = &pbbo[nvbo->pbbo_index]; - WARN_ONCE(nvbo->gem.dumb, - "GPU use of dumb buffer is illegal.\n"); - ret = nouveau_gem_set_domain(&nvbo->gem, b->read_domains, b->write_domains, b->valid_domains); |