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>

authored by Frans Pop and committed by Dave Airlie 6cb504c2 8d3457ec

+2 -2
+2 -2
drivers/gpu/drm/i915/i915_irq.c
··· 190 190 low_frame = pipe ? PIPEBFRAMEPIXEL : PIPEAFRAMEPIXEL; 191 191 192 192 if (!i915_pipe_enabled(dev, pipe)) { 193 - DRM_ERROR("trying to get vblank count for disabled pipe %d\n", pipe); 193 + DRM_DEBUG("trying to get vblank count for disabled pipe %d\n", pipe); 194 194 return 0; 195 195 } 196 196 ··· 219 219 int reg = pipe ? PIPEB_FRMCOUNT_GM45 : PIPEA_FRMCOUNT_GM45; 220 220 221 221 if (!i915_pipe_enabled(dev, pipe)) { 222 - DRM_ERROR("trying to get vblank count for disabled pipe %d\n", pipe); 222 + DRM_DEBUG("trying to get vblank count for disabled pipe %d\n", pipe); 223 223 return 0; 224 224 } 225 225