Commit d8e4fb91 authored by Alex Deucher's avatar Alex Deucher

drm/amdgpu/display: Protect some functions with CONFIG_DRM_AMD_DC_DCN

Protect remove_hpo_dp_link_enc_from_ctx() and release_hpo_dp_link_enc()
with CONFIG_DRM_AMD_DC_DCN as the functions are only called from code
that is protected by CONFIG_DRM_AMD_DC_DCN.  Fixes build fail with
-Werror=unused-function.

Fixes: 9b0e0d433f74 ("drm/amd/display: Add dependant changes for DCN32/321")
Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Reviewed-by: default avatarHarry Wentland <harry.wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Cc: Aurabindo Pillai <aurabindo.pillai@amd.com>
parent 3e80a5b0
...@@ -1801,6 +1801,7 @@ static inline void retain_hpo_dp_link_enc( ...@@ -1801,6 +1801,7 @@ static inline void retain_hpo_dp_link_enc(
res_ctx->hpo_dp_link_enc_ref_cnts[enc_index]++; res_ctx->hpo_dp_link_enc_ref_cnts[enc_index]++;
} }
#if defined(CONFIG_DRM_AMD_DC_DCN)
static inline void release_hpo_dp_link_enc( static inline void release_hpo_dp_link_enc(
struct resource_context *res_ctx, struct resource_context *res_ctx,
int enc_index) int enc_index)
...@@ -1808,6 +1809,7 @@ static inline void release_hpo_dp_link_enc( ...@@ -1808,6 +1809,7 @@ static inline void release_hpo_dp_link_enc(
ASSERT(res_ctx->hpo_dp_link_enc_ref_cnts[enc_index] > 0); ASSERT(res_ctx->hpo_dp_link_enc_ref_cnts[enc_index] > 0);
res_ctx->hpo_dp_link_enc_ref_cnts[enc_index]--; res_ctx->hpo_dp_link_enc_ref_cnts[enc_index]--;
} }
#endif
static bool add_hpo_dp_link_enc_to_ctx(struct resource_context *res_ctx, static bool add_hpo_dp_link_enc_to_ctx(struct resource_context *res_ctx,
const struct resource_pool *pool, const struct resource_pool *pool,
...@@ -1832,6 +1834,7 @@ static bool add_hpo_dp_link_enc_to_ctx(struct resource_context *res_ctx, ...@@ -1832,6 +1834,7 @@ static bool add_hpo_dp_link_enc_to_ctx(struct resource_context *res_ctx,
return pipe_ctx->link_res.hpo_dp_link_enc != NULL; return pipe_ctx->link_res.hpo_dp_link_enc != NULL;
} }
#if defined(CONFIG_DRM_AMD_DC_DCN)
static void remove_hpo_dp_link_enc_from_ctx(struct resource_context *res_ctx, static void remove_hpo_dp_link_enc_from_ctx(struct resource_context *res_ctx,
struct pipe_ctx *pipe_ctx, struct pipe_ctx *pipe_ctx,
struct dc_stream_state *stream) struct dc_stream_state *stream)
...@@ -1845,6 +1848,7 @@ static void remove_hpo_dp_link_enc_from_ctx(struct resource_context *res_ctx, ...@@ -1845,6 +1848,7 @@ static void remove_hpo_dp_link_enc_from_ctx(struct resource_context *res_ctx,
pipe_ctx->link_res.hpo_dp_link_enc = NULL; pipe_ctx->link_res.hpo_dp_link_enc = NULL;
} }
} }
#endif
/* TODO: release audio object */ /* TODO: release audio object */
void update_audio_usage( void update_audio_usage(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment