mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-07 06:14:24 +08:00
drm/i915: use DRM_DEBUG_KMS() instead of drm_dbg(DRM_UT_KMS, ...)
Unify on current common usage to allow repurposing drm_dbg() later. Fix newlines while at it. Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20191002145405.27848-2-jani.nikula@intel.com
This commit is contained in:
parent
0d52cc7e03
commit
48c38154d5
@ -12556,10 +12556,10 @@ pipe_config_infoframe_mismatch(struct drm_i915_private *dev_priv,
|
||||
if ((drm_debug & DRM_UT_KMS) == 0)
|
||||
return;
|
||||
|
||||
drm_dbg(DRM_UT_KMS, "fastset mismatch in %s infoframe", name);
|
||||
drm_dbg(DRM_UT_KMS, "expected:");
|
||||
DRM_DEBUG_KMS("fastset mismatch in %s infoframe\n", name);
|
||||
DRM_DEBUG_KMS("expected:\n");
|
||||
hdmi_infoframe_log(KERN_DEBUG, dev_priv->drm.dev, a);
|
||||
drm_dbg(DRM_UT_KMS, "found");
|
||||
DRM_DEBUG_KMS("found:\n");
|
||||
hdmi_infoframe_log(KERN_DEBUG, dev_priv->drm.dev, b);
|
||||
} else {
|
||||
DRM_ERROR("mismatch in %s infoframe\n", name);
|
||||
@ -12581,7 +12581,7 @@ pipe_config_mismatch(bool fastset, const char *name, const char *format, ...)
|
||||
vaf.va = &args;
|
||||
|
||||
if (fastset)
|
||||
drm_dbg(DRM_UT_KMS, "fastset mismatch in %s %pV", name, &vaf);
|
||||
DRM_DEBUG_KMS("fastset mismatch in %s %pV\n", name, &vaf);
|
||||
else
|
||||
DRM_ERROR("mismatch in %s %pV\n", name, &vaf);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user