To fetch pll divider tables a function name for C20 is intel_c20_pll_tables_get() but for C10 the similar function is called intel_c10pll_tables_get(). Rename intel_c20_pll_tables_get() to intel_c20pll_tables_get() to be more consistent.
Signed-off-by: Mika Kahola <[email protected]> --- drivers/gpu/drm/i915/display/intel_cx0_phy.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_cx0_phy.c b/drivers/gpu/drm/i915/display/intel_cx0_phy.c index 27be2a490297..ef69e8762b90 100644 --- a/drivers/gpu/drm/i915/display/intel_cx0_phy.c +++ b/drivers/gpu/drm/i915/display/intel_cx0_phy.c @@ -2456,8 +2456,8 @@ static int intel_c20_compute_hdmi_tmds_pll(const struct intel_crtc_state *crtc_s } static const struct intel_c20pll_state * const * -intel_c20_pll_tables_get(const struct intel_crtc_state *crtc_state, - struct intel_encoder *encoder) +intel_c20pll_tables_get(const struct intel_crtc_state *crtc_state, + struct intel_encoder *encoder) { struct intel_display *display = to_intel_display(crtc_state); @@ -2630,7 +2630,7 @@ intel_c20_pll_find_table(const struct intel_crtc_state *crtc_state, const struct intel_c20pll_state * const *tables; int i; - tables = intel_c20_pll_tables_get(crtc_state, encoder); + tables = intel_c20pll_tables_get(crtc_state, encoder); if (!tables) return NULL; -- 2.34.1
