drm/amd/display/dc/dce80/dce80_resource: Make local functions static
Fixes the following W=1 kernel build warning(s): drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_resource.c:527:17: warning: no previous prototype for ‘dce80_aux_engine_create’ [-Wmissing-prototypes] drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_resource.c:565:20: warning: no previous prototype for ‘dce80_i2c_hw_create’ [-Wmissing-prototypes] drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_resource.c:581:20: warning: no previous prototype for ‘dce80_i2c_sw_create’ [-Wmissing-prototypes] drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_resource.c:715:22: warning: no previous prototype for ‘dce80_link_encoder_create’ [-Wmissing-prototypes] drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_resource.c:754:22: warning: no previous prototype for ‘dce80_clock_source_create’ [-Wmissing-prototypes] drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_resource.c:778:6: warning: no previous prototype for ‘dce80_clock_source_destroy’ [-Wmissing-prototypes] drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_resource.c:868:6: warning: no previous prototype for ‘dce80_validate_bandwidth’ [-Wmissing-prototypes] drivers/gpu/drm/amd/amdgpu/../display/dc/dce80/dce80_resource.c:913:16: warning: no previous prototype for ‘dce80_validate_global’ [-Wmissing-prototypes] Cc: Harry Wentland <harry.wentland@amd.com> Cc: Leo Li <sunpeng.li@amd.com> Cc: Alex Deucher <alexander.deucher@amd.com> Cc: "Christian König" <christian.koenig@amd.com> Cc: David Airlie <airlied@linux.ie> Cc: Daniel Vetter <daniel@ffwll.ch> Cc: Anthony Koo <Anthony.Koo@amd.com> Cc: amd-gfx@lists.freedesktop.org Cc: dri-devel@lists.freedesktop.org Reviewed-by: Harry Wentland <harry.wentland@amd.com> Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
1689fca0d6
commit
2b8d0f1f3e
@ -526,7 +526,7 @@ static struct output_pixel_processor *dce80_opp_create(
|
||||
return &opp->base;
|
||||
}
|
||||
|
||||
struct dce_aux *dce80_aux_engine_create(
|
||||
static struct dce_aux *dce80_aux_engine_create(
|
||||
struct dc_context *ctx,
|
||||
uint32_t inst)
|
||||
{
|
||||
@ -564,7 +564,7 @@ static const struct dce_i2c_mask i2c_masks = {
|
||||
I2C_COMMON_MASK_SH_LIST_DCE_COMMON_BASE(_MASK)
|
||||
};
|
||||
|
||||
struct dce_i2c_hw *dce80_i2c_hw_create(
|
||||
static struct dce_i2c_hw *dce80_i2c_hw_create(
|
||||
struct dc_context *ctx,
|
||||
uint32_t inst)
|
||||
{
|
||||
@ -580,7 +580,7 @@ struct dce_i2c_hw *dce80_i2c_hw_create(
|
||||
return dce_i2c_hw;
|
||||
}
|
||||
|
||||
struct dce_i2c_sw *dce80_i2c_sw_create(
|
||||
static struct dce_i2c_sw *dce80_i2c_sw_create(
|
||||
struct dc_context *ctx)
|
||||
{
|
||||
struct dce_i2c_sw *dce_i2c_sw =
|
||||
@ -714,7 +714,7 @@ static const struct encoder_feature_support link_enc_feature = {
|
||||
.flags.bits.IS_TPS3_CAPABLE = true
|
||||
};
|
||||
|
||||
struct link_encoder *dce80_link_encoder_create(
|
||||
static struct link_encoder *dce80_link_encoder_create(
|
||||
const struct encoder_init_data *enc_init_data)
|
||||
{
|
||||
struct dce110_link_encoder *enc110 =
|
||||
@ -753,7 +753,7 @@ static struct panel_cntl *dce80_panel_cntl_create(const struct panel_cntl_init_d
|
||||
return &panel_cntl->base;
|
||||
}
|
||||
|
||||
struct clock_source *dce80_clock_source_create(
|
||||
static struct clock_source *dce80_clock_source_create(
|
||||
struct dc_context *ctx,
|
||||
struct dc_bios *bios,
|
||||
enum clock_source_id id,
|
||||
@ -777,7 +777,7 @@ struct clock_source *dce80_clock_source_create(
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void dce80_clock_source_destroy(struct clock_source **clk_src)
|
||||
static void dce80_clock_source_destroy(struct clock_source **clk_src)
|
||||
{
|
||||
kfree(TO_DCE110_CLK_SRC(*clk_src));
|
||||
*clk_src = NULL;
|
||||
@ -867,7 +867,7 @@ static void dce80_resource_destruct(struct dce110_resource_pool *pool)
|
||||
}
|
||||
}
|
||||
|
||||
bool dce80_validate_bandwidth(
|
||||
static bool dce80_validate_bandwidth(
|
||||
struct dc *dc,
|
||||
struct dc_state *context,
|
||||
bool fast_validate)
|
||||
@ -912,7 +912,7 @@ static bool dce80_validate_surface_sets(
|
||||
return true;
|
||||
}
|
||||
|
||||
enum dc_status dce80_validate_global(
|
||||
static enum dc_status dce80_validate_global(
|
||||
struct dc *dc,
|
||||
struct dc_state *context)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user