drm: silence pointless vblank warning.

Some applications/hardware combinations are triggering the message "failed to
acquire vblank counter" to be issued up to 20 times a second, which makes it
both useless and dangerous, as this may hide other important messages.
This changes makes it only appear when people are debugging.

Signed-off-by: Paul Rolland <rol@as2917.net>
Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Lost-twice-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>

authored by Paul Rolland and committed by Dave Airlie 8d3457ec 38d5487d

+1 -1
+1 -1
drivers/gpu/drm/drm_irq.c
··· 566 567 ret = drm_vblank_get(dev, crtc); 568 if (ret) { 569 - DRM_ERROR("failed to acquire vblank counter, %d\n", ret); 570 return ret; 571 } 572 seq = drm_vblank_count(dev, crtc);
··· 566 567 ret = drm_vblank_get(dev, crtc); 568 if (ret) { 569 + DRM_DEBUG("failed to acquire vblank counter, %d\n", ret); 570 return ret; 571 } 572 seq = drm_vblank_count(dev, crtc);