summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/gem/i915_gem_phys.c
diff options
context:
space:
mode:
authorChris Wilson <chris@chris-wilson.co.uk>2020-05-25 15:19:57 +0100
committerChris Wilson <chris@chris-wilson.co.uk>2020-05-25 16:45:18 +0100
commitea97c4ca54e45c9458f73e9dbef66439c2ae11f8 (patch)
treee0987d35ffac1160b7419ed25577901d1a045e21 /drivers/gpu/drm/i915/gem/i915_gem_phys.c
parent1d93949eb4f870bd189b3e2a435afc327b45dc3a (diff)
downloadlinux-ea97c4ca54e45c9458f73e9dbef66439c2ae11f8.tar.bz2
drm/i915/gem: Suppress some random warnings
Leave the error propagation in place, but limit the warnings to only show up in CI if the unlikely errors are hit. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200525141957.3061-2-chris@chris-wilson.co.uk
Diffstat (limited to 'drivers/gpu/drm/i915/gem/i915_gem_phys.c')
-rw-r--r--drivers/gpu/drm/i915/gem/i915_gem_phys.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_phys.c b/drivers/gpu/drm/i915/gem/i915_gem_phys.c
index da845ff0cacc..021c747b5387 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_phys.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_phys.c
@@ -29,8 +29,7 @@ static int i915_gem_object_get_pages_phys(struct drm_i915_gem_object *obj)
void *dst;
int i;
- if (drm_WARN_ON(obj->base.dev,
- i915_gem_object_needs_bit17_swizzle(obj)))
+ if (GEM_WARN_ON(i915_gem_object_needs_bit17_swizzle(obj)))
return -EINVAL;
/*