Skip to content

Commit

Permalink
drm/i915: Make the downclocking debug code be under DRM_DEBUG not DRM…
Browse files Browse the repository at this point in the history
…_ERROR.

Signed-off-by: Eric Anholt <eric@anholt.net>
Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org>
  • Loading branch information
Eric Anholt committed Sep 4, 2009
1 parent d6073d7 commit 67cf781
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/i915/intel_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -3202,7 +3202,7 @@ void intel_increase_renderclock(struct drm_device *dev, bool schedule)
return;

if (!dev_priv->render_reclock_avail) {
DRM_ERROR("not reclocking render clock\n");
DRM_DEBUG("not reclocking render clock\n");
return;
}

Expand All @@ -3227,7 +3227,7 @@ void intel_decrease_renderclock(struct drm_device *dev)
return;

if (!dev_priv->render_reclock_avail) {
DRM_ERROR("not reclocking render clock\n");
DRM_DEBUG("not reclocking render clock\n");
return;
}

Expand Down

0 comments on commit 67cf781

Please sign in to comment.