i915: Fix a DRM_ERROR that should be DRM_DEBUG.

It would clutter up the kernel output in a situation which is legitimate before
X.org 7.2 and handled correctly by the 3D driver.

Signed-off-by: Dave Airlie <airlied@linux.ie>

authored by =?utf-8?q?Michel_D=C3=A4nzer?= and committed by Dave Airlie eac681b3 bf81b464

+1 -1
+1 -1
drivers/char/drm/i915_irq.c
··· 500 500 501 501 if (!drm_get_drawable_info(dev, swap.drawable)) { 502 502 spin_unlock_irqrestore(&dev->drw_lock, irqflags); 503 - DRM_ERROR("Invalid drawable ID %d\n", swap.drawable); 503 + DRM_DEBUG("Invalid drawable ID %d\n", swap.drawable); 504 504 return DRM_ERR(EINVAL); 505 505 } 506 506