diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2021-10-07 02:57:03 +0300 |
---|---|---|
committer | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2021-10-18 12:25:02 +0300 |
commit | 63d7d05678af5cdc616718806971041ecacf4897 (patch) | |
tree | 493edce2089bea6c19f2cf2dd92e73ce7e46bd79 /drivers/gpu | |
parent | 841f262e74a7c209055152026041bbe486c962b9 (diff) |
drm/i915: Remove the drm_dbg() from the vblank evade critical section
We are inside the vblank evade critical section here, racing
against the raster beam. There is no time to print debug
messages.
Cc: Anshuman Gupta <anshuman.gupta@intel.com>
Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Cc: Juston Li <juston.li@intel.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Cc: Uma Shankar <uma.shankar@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20211006235704.28894-4-ville.syrjala@linux.intel.com
Reviewed-by: Juston Li <juston.li@intel.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/i915/display/skl_universal_plane.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/display/skl_universal_plane.c b/drivers/gpu/drm/i915/display/skl_universal_plane.c index 87e94e40a858..9faffa4815ca 100644 --- a/drivers/gpu/drm/i915/display/skl_universal_plane.c +++ b/drivers/gpu/drm/i915/display/skl_universal_plane.c @@ -1018,8 +1018,6 @@ static void intel_load_plane_csc_black(struct intel_plane *intel_plane) enum plane_id plane = intel_plane->id; u16 postoff = 0; - drm_dbg_kms(&dev_priv->drm, "plane color CTM to black %s:%d\n", - intel_plane->base.name, plane); intel_de_write_fw(dev_priv, PLANE_CSC_COEFF(pipe, plane, 0), 0); intel_de_write_fw(dev_priv, PLANE_CSC_COEFF(pipe, plane, 1), 0); |