]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
drm/i915/psr: Drop test for EDP in CRTC when forcing commit
authorJosé Roberto de Souza <jose.souza@intel.com>
Fri, 8 Mar 2019 00:00:45 +0000 (16:00 -0800)
committerJosé Roberto de Souza <jose.souza@intel.com>
Fri, 8 Mar 2019 18:31:43 +0000 (10:31 -0800)
If has_psr is set it means that CRTC has a EDP panel attached so the
EDP check is redundant and can be dropped.

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Dhinakaran Pandiyan <dhinakaran.pandiyan@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190308000050.6226-4-jose.souza@intel.com
drivers/gpu/drm/i915/intel_psr.c

index 6175b1d2e0c8ba549471acd41e3724f90fba3ec0..2d9f64c362e2b580c91d465cbe3a620d5cc7d9b6 100644 (file)
@@ -981,9 +981,7 @@ retry:
 
                intel_crtc_state = to_intel_crtc_state(crtc_state);
 
-               if (crtc_state->active &&
-                   intel_crtc_has_type(intel_crtc_state, INTEL_OUTPUT_EDP) &&
-                   intel_crtc_state->has_psr) {
+               if (crtc_state->active && intel_crtc_state->has_psr) {
                        /* Mark mode as changed to trigger a pipe->update() */
                        crtc_state->mode_changed = true;
                        break;