From 30ef0808e61850ec9dd105fe0a21f7f9a7c69324 Mon Sep 17 00:00:00 2001 From: Alex Deucher Date: Wed, 6 Jul 2022 10:04:15 -0400 Subject: [PATCH] drm/amd/display: make get_refresh_rate() static It's not used outside of dcn30_resource.c. Reported-by: kernel test robot Reviewed-by: Harry Wentland Signed-off-by: Alex Deucher --- drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c b/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c index 4f684235a413..7f01463942fb 100644 --- a/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c +++ b/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_resource.c @@ -1899,7 +1899,7 @@ noinline bool dcn30_internal_validate_bw( return out; } -int get_refresh_rate(struct dc_state *context) +static int get_refresh_rate(struct dc_state *context) { int refresh_rate = 0; int h_v_total = 0; -- GitLab