drm/amdgpu/display: make some functions static

Fixes "no previous prototype" warnings.

Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Alex Deucher 2022-06-06 09:59:52 -04:00
parent 031ac4e419
commit b94b02d72e
3 changed files with 6 additions and 6 deletions

View File

@ -487,7 +487,7 @@ static void dcn32_update_clocks(struct clk_mgr *clk_mgr_base,
clk_mgr_base->clks.dispclk_khz / 1000 / 7);
}
void dcn32_clock_read_ss_info(struct clk_mgr_internal *clk_mgr)
static void dcn32_clock_read_ss_info(struct clk_mgr_internal *clk_mgr)
{
struct dc_bios *bp = clk_mgr->base.ctx->dc_bios;
int ss_info_num = bp->funcs->get_ss_entry_number(

View File

@ -662,8 +662,8 @@ void dccg31_init(struct dccg *dccg)
}
}
void dccg31_otg_add_pixel(struct dccg *dccg,
uint32_t otg_inst)
static void dccg31_otg_add_pixel(struct dccg *dccg,
uint32_t otg_inst)
{
struct dcn_dccg *dccg_dcn = TO_DCN_DCCG(dccg);
@ -671,8 +671,8 @@ void dccg31_otg_add_pixel(struct dccg *dccg,
OTG_ADD_PIXEL[otg_inst], 1);
}
void dccg31_otg_drop_pixel(struct dccg *dccg,
uint32_t otg_inst)
static void dccg31_otg_drop_pixel(struct dccg *dccg,
uint32_t otg_inst)
{
struct dcn_dccg *dccg_dcn = TO_DCN_DCCG(dccg);

View File

@ -177,7 +177,7 @@ void dccg32_set_dtbclk_dto(
}
}
void dccg32_set_valid_pixel_rate(
static void dccg32_set_valid_pixel_rate(
struct dccg *dccg,
int ref_dtbclk_khz,
int otg_inst,