diff options
author | Dmytro Laktyushkin <Dmytro.Laktyushkin@amd.com> | 2018-08-07 14:43:20 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2018-08-21 14:16:35 -0500 |
commit | 66b198ffc934089c24f8a12436d46fdc283eaed8 (patch) | |
tree | 7a87931695a7bf161269bc18e3435405e89afda4 /drivers/gpu/drm/amd/display/dc/inc | |
parent | 16747b21098505bea3b7bc7009d8e16921a7ca65 (diff) | |
download | talos-obmc-linux-66b198ffc934089c24f8a12436d46fdc283eaed8.tar.gz talos-obmc-linux-66b198ffc934089c24f8a12436d46fdc283eaed8.zip |
drm/amd/display: make dp_ss_off optional
dp_ss_off flag doesn't need to be set, so we create a link_init
function if it is needed by an asic
Signed-off-by: Dmytro Laktyushkin <Dmytro.Laktyushkin@amd.com>
Reviewed-by: Eric Bernstein <Eric.Bernstein@amd.com>
Acked-by: Bhawanpreet Lakha <Bhawanpreet.Lakha@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/inc')
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/inc/core_types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/inc/core_types.h b/drivers/gpu/drm/amd/display/dc/inc/core_types.h index 9f33306f9014..d2d8b1820058 100644 --- a/drivers/gpu/drm/amd/display/dc/inc/core_types.h +++ b/drivers/gpu/drm/amd/display/dc/inc/core_types.h @@ -92,6 +92,7 @@ struct resource_context; struct resource_funcs { void (*destroy)(struct resource_pool **pool); + void (*link_init)(struct dc_link *link); struct link_encoder *(*link_enc_create)( const struct encoder_init_data *init); |