drm/amd/display: Use dc_is_hdmi_signal() instead of ENUM
Signed-off-by: Eric Bernstein <eric.bernstein@amd.com> Reviewed-by: Nevenko Stupar <Nevenko.Stupar@amd.com> Acked-by: Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
3c7dd2cbc8
commit
3a9aeadbdf
|
@ -1207,7 +1207,7 @@ static bool construct(
|
|||
link->link_enc = link->dc->res_pool->funcs->link_enc_create(
|
||||
&enc_init_data);
|
||||
|
||||
if( link->link_enc == NULL) {
|
||||
if (link->link_enc == NULL) {
|
||||
DC_ERROR("Failed to create link encoder!\n");
|
||||
goto link_enc_create_fail;
|
||||
}
|
||||
|
@ -1982,7 +1982,7 @@ static void enable_link_hdmi(struct pipe_ctx *pipe_ctx)
|
|||
pipe_ctx->stream->signal,
|
||||
stream->phy_pix_clk);
|
||||
|
||||
if (pipe_ctx->stream->signal == SIGNAL_TYPE_HDMI_TYPE_A)
|
||||
if (dc_is_hdmi_signal(pipe_ctx->stream->signal))
|
||||
dal_ddc_service_read_scdc_data(link->ddc);
|
||||
}
|
||||
|
||||
|
|
|
@ -95,7 +95,6 @@ struct resource_funcs {
|
|||
void (*link_init)(struct dc_link *link);
|
||||
struct link_encoder *(*link_enc_create)(
|
||||
const struct encoder_init_data *init);
|
||||
|
||||
bool (*validate_bandwidth)(
|
||||
struct dc *dc,
|
||||
struct dc_state *context);
|
||||
|
|
Loading…
Reference in New Issue