Skip to content

Commit

Permalink
drm/i915: make unsupported fb modifier message DRM_DEBUG
Browse files Browse the repository at this point in the history
Or users can just spam the log all they want.

Issue introduced in

commit 9a8f0a1
Author: Tvrtko Ursulin <[email protected]>
Date:   Fri Feb 27 11:15:24 2015 +0000

    drm/i915/skl: Allow Y (and Yf) frame buffer creation

References: https://bugs.freedesktop.org/show_bug.cgi?id=89628
Signed-off-by: Jesse Barnes <[email protected]>
Reviewed-by: Jani Nikula <[email protected]>
Signed-off-by: Daniel Vetter <[email protected]>
  • Loading branch information
jbarnes993 authored and danvet committed Mar 25, 2015
1 parent c2d885c commit c0f4042
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 @@ -13006,8 +13006,8 @@ static int intel_framebuffer_init(struct drm_device *dev,
case I915_FORMAT_MOD_X_TILED:
break;
default:
DRM_ERROR("Unsupported fb modifier 0x%llx!\n",
mode_cmd->modifier[0]);
DRM_DEBUG("Unsupported fb modifier 0x%llx!\n",
mode_cmd->modifier[0]);
return -EINVAL;
}

Expand Down

0 comments on commit c0f4042

Please sign in to comment.