Commit e0bf3e23 authored by Ville Syrjälä's avatar Ville Syrjälä

drm/i915: Simplify intel_crtc_copy_uapi_to_hw_state_nomodeset()

Rewrite intel_crtc_copy_uapi_to_hw_state_nomodeset() in a
slightly more straightforward manner.
Reviewed-by: default avatarManasi Navare <manasi.d.navare@intel.com>
Signed-off-by: default avatarVille Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20211022103304.24164-6-ville.syrjala@linux.intel.com
parent f2e19b58
...@@ -5762,18 +5762,15 @@ static void ...@@ -5762,18 +5762,15 @@ static void
intel_crtc_copy_uapi_to_hw_state_nomodeset(struct intel_atomic_state *state, intel_crtc_copy_uapi_to_hw_state_nomodeset(struct intel_atomic_state *state,
struct intel_crtc_state *crtc_state) struct intel_crtc_state *crtc_state)
{ {
const struct intel_crtc_state *from_crtc_state = crtc_state; const struct intel_crtc_state *master_crtc_state;
struct intel_crtc *master_crtc;
if (crtc_state->bigjoiner_slave) {
from_crtc_state = intel_atomic_get_new_crtc_state(state,
crtc_state->bigjoiner_linked_crtc);
/* No need to copy state if the master state is unchanged */ master_crtc = intel_master_crtc(crtc_state);
if (!from_crtc_state) master_crtc_state = intel_atomic_get_new_crtc_state(state, master_crtc);
return;
}
intel_crtc_copy_color_blobs(crtc_state, from_crtc_state); /* No need to copy state if the master state is unchanged */
if (master_crtc_state)
intel_crtc_copy_color_blobs(crtc_state, master_crtc_state);
} }
static void static void
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment