drm/i915: Rename intel_modeset_all_pipes() to intel_modeset_all_pipes_late()

Rename intel_modeset_all_pipes() to intel_modeset_all_pipes_late() to
clarify when the function can be called (vs.
intel_modeset_pipes_in_mask_early()).

Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230921195159.2646027-8-imre.deak@intel.com
This commit is contained in:
Imre Deak 2023-09-21 22:51:55 +03:00
parent fa7a7a1c9c
commit e3b2690491
4 changed files with 7 additions and 7 deletions

View file

@ -3170,7 +3170,7 @@ int intel_modeset_calc_cdclk(struct intel_atomic_state *state)
} else if (intel_cdclk_needs_modeset(&old_cdclk_state->actual, } else if (intel_cdclk_needs_modeset(&old_cdclk_state->actual,
&new_cdclk_state->actual)) { &new_cdclk_state->actual)) {
/* All pipes must be switched off while we change the cdclk. */ /* All pipes must be switched off while we change the cdclk. */
ret = intel_modeset_all_pipes(state, "CDCLK change"); ret = intel_modeset_all_pipes_late(state, "CDCLK change");
if (ret) if (ret)
return ret; return ret;

View file

@ -5526,7 +5526,7 @@ int intel_modeset_pipes_in_mask_early(struct intel_atomic_state *state,
} }
/** /**
* intel_modeset_all_pipes - force a full modeset on all pipes * intel_modeset_all_pipes_late - force a full modeset on all pipes
* @state: intel atomic state * @state: intel atomic state
* @reason: the reason for the full modeset * @reason: the reason for the full modeset
* *
@ -5536,8 +5536,8 @@ int intel_modeset_pipes_in_mask_early(struct intel_atomic_state *state,
* *
* Returns 0 in case of success, negative error code otherwise. * Returns 0 in case of success, negative error code otherwise.
*/ */
int intel_modeset_all_pipes(struct intel_atomic_state *state, int intel_modeset_all_pipes_late(struct intel_atomic_state *state,
const char *reason) const char *reason)
{ {
struct drm_i915_private *dev_priv = to_i915(state->base.dev); struct drm_i915_private *dev_priv = to_i915(state->base.dev);
struct intel_crtc *crtc; struct intel_crtc *crtc;

View file

@ -513,8 +513,8 @@ void intel_update_watermarks(struct drm_i915_private *i915);
/* modesetting */ /* modesetting */
int intel_modeset_pipes_in_mask_early(struct intel_atomic_state *state, int intel_modeset_pipes_in_mask_early(struct intel_atomic_state *state,
const char *reason, u8 pipe_mask); const char *reason, u8 pipe_mask);
int intel_modeset_all_pipes(struct intel_atomic_state *state, int intel_modeset_all_pipes_late(struct intel_atomic_state *state,
const char *reason); const char *reason);
void intel_modeset_get_crtc_power_domains(struct intel_crtc_state *crtc_state, void intel_modeset_get_crtc_power_domains(struct intel_crtc_state *crtc_state,
struct intel_power_domain_mask *old_domains); struct intel_power_domain_mask *old_domains);
void intel_modeset_put_crtc_power_domains(struct intel_crtc *crtc, void intel_modeset_put_crtc_power_domains(struct intel_crtc *crtc,

View file

@ -2618,7 +2618,7 @@ skl_compute_ddb(struct intel_atomic_state *state)
if (old_dbuf_state->joined_mbus != new_dbuf_state->joined_mbus) { if (old_dbuf_state->joined_mbus != new_dbuf_state->joined_mbus) {
/* TODO: Implement vblank synchronized MBUS joining changes */ /* TODO: Implement vblank synchronized MBUS joining changes */
ret = intel_modeset_all_pipes(state, "MBUS joining change"); ret = intel_modeset_all_pipes_late(state, "MBUS joining change");
if (ret) if (ret)
return ret; return ret;
} }