diff options
author | Frans Pop <elendil@planet.nl> | 2009-08-09 12:25:29 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-08-09 12:25:29 +1000 |
commit | 6cb504c29b1338925c83e4430e42a51eaa43781e (patch) | |
tree | ab7d1d0499b36c4f8f2290469afd633129c04e53 /drivers/gpu/drm | |
parent | 8d3457ec3198a569dd14dc9e3ae8b6163bcaa0b5 (diff) | |
download | linux-3.10-6cb504c29b1338925c83e4430e42a51eaa43781e.tar.gz linux-3.10-6cb504c29b1338925c83e4430e42a51eaa43781e.tar.bz2 linux-3.10-6cb504c29b1338925c83e4430e42a51eaa43781e.zip |
drm/i915: silence vblank warnings
these errors are pretty pointless
Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm')
-rw-r--r-- | drivers/gpu/drm/i915/i915_irq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c index 83aee80e77a..7ebc84c2881 100644 --- a/drivers/gpu/drm/i915/i915_irq.c +++ b/drivers/gpu/drm/i915/i915_irq.c @@ -190,7 +190,7 @@ u32 i915_get_vblank_counter(struct drm_device *dev, int pipe) low_frame = pipe ? PIPEBFRAMEPIXEL : PIPEAFRAMEPIXEL; if (!i915_pipe_enabled(dev, pipe)) { - DRM_ERROR("trying to get vblank count for disabled pipe %d\n", pipe); + DRM_DEBUG("trying to get vblank count for disabled pipe %d\n", pipe); return 0; } @@ -219,7 +219,7 @@ u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe) int reg = pipe ? PIPEB_FRMCOUNT_GM45 : PIPEA_FRMCOUNT_GM45; if (!i915_pipe_enabled(dev, pipe)) { - DRM_ERROR("trying to get vblank count for disabled pipe %d\n", pipe); + DRM_DEBUG("trying to get vblank count for disabled pipe %d\n", pipe); return 0; } |