Skip to content

Commit

Permalink
i915: Fix a DRM_ERROR that should be DRM_DEBUG.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
=?utf-8?q?Michel_D=C3=A4nzer?= authored and Dave Airlie committed Jan 8, 2007
1 parent bf81b46 commit eac681b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/char/drm/i915_irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ int i915_vblank_swap(DRM_IOCTL_ARGS)

if (!drm_get_drawable_info(dev, swap.drawable)) {
spin_unlock_irqrestore(&dev->drw_lock, irqflags);
DRM_ERROR("Invalid drawable ID %d\n", swap.drawable);
DRM_DEBUG("Invalid drawable ID %d\n", swap.drawable);
return DRM_ERR(EINVAL);
}

Expand Down

0 comments on commit eac681b

Please sign in to comment.