]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
drm/i915/dpll: Rename intel_update_active_dpll
authorSuraj Kandpal <suraj.kandpal@intel.com>
Thu, 15 May 2025 07:18:01 +0000 (12:48 +0530)
committerSuraj Kandpal <suraj.kandpal@intel.com>
Tue, 20 May 2025 08:04:24 +0000 (13:34 +0530)
Rename intel_update_active_dpll to intel_dpll_update_active in an
effort to have function names which are exported to start with
filenames they are exported from.

Signed-off-by: Suraj Kandpal <suraj.kandpal@intel.com>
Reviewed-by: Mika Kahola <mika.kahola@intel.com>
Link: https://lore.kernel.org/r/20250515071801.2221120-15-suraj.kandpal@intel.com
drivers/gpu/drm/i915/display/intel_ddi.c
drivers/gpu/drm/i915/display/intel_dpll_mgr.c
drivers/gpu/drm/i915/display/intel_dpll_mgr.h

index 11ebcb40c91f6e9d700ecf94f4add0b3b9104efb..0e6d618b53565593d62567f33f5a3b527dcea11f 100644 (file)
@@ -3650,7 +3650,7 @@ void intel_ddi_update_active_dpll(struct intel_atomic_state *state,
 
        for_each_intel_crtc_in_pipe_mask(display->drm, pipe_crtc,
                                         intel_crtc_joined_pipe_mask(crtc_state))
-               intel_update_active_dpll(state, pipe_crtc, encoder);
+               intel_dpll_update_active(state, pipe_crtc, encoder);
 }
 
 /*
index bf66cbe5a11cc8e11c4f6493c2de613f8b3ab82b..28b3f5ea4219a0344630b44278f31939257a8cab 100644 (file)
@@ -4450,7 +4450,7 @@ void intel_dpll_release(struct intel_atomic_state *state,
 }
 
 /**
- * intel_update_active_dpll - update the active DPLL for a CRTC/encoder
+ * intel_dpll_update_active - update the active DPLL for a CRTC/encoder
  * @state: atomic state
  * @crtc: the CRTC for which to update the active DPLL
  * @encoder: encoder determining the type of port DPLL
@@ -4459,7 +4459,7 @@ void intel_dpll_release(struct intel_atomic_state *state,
  * from the port DPLLs reserved previously by intel_dpll_reserve(). The
  * DPLL selected will be based on the current mode of the encoder's port.
  */
-void intel_update_active_dpll(struct intel_atomic_state *state,
+void intel_dpll_update_active(struct intel_atomic_state *state,
                              struct intel_crtc *crtc,
                              struct intel_encoder *encoder)
 {
index b388310af9c3e70fd0a972bd7efcf9a46460d1af..f131bdd1c975de2f126e88d0fdabf73f9e7d9a87 100644 (file)
@@ -409,7 +409,7 @@ void intel_dpll_crtc_put(const struct intel_crtc *crtc,
                         struct intel_dpll_state *shared_dpll_state);
 void icl_set_active_port_dpll(struct intel_crtc_state *crtc_state,
                              enum icl_port_dpll_id port_dpll_id);
-void intel_update_active_dpll(struct intel_atomic_state *state,
+void intel_dpll_update_active(struct intel_atomic_state *state,
                              struct intel_crtc *crtc,
                              struct intel_encoder *encoder);
 int intel_dpll_get_freq(struct intel_display *display,