mirror of https://gitee.com/openkylin/linux.git
drm/amdgpu/display: move link_bandwidth_kbps under CONFIG_DRM_AMD_DC_DCN
It's only used when CONFIG_DRM_AMD_DC_DCN is set. Fixes and set but not used warning. Acked-by: Evan Quan <evan.quan@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
4c4d5a49c6
commit
7c431455cd
|
@ -5120,9 +5120,8 @@ create_stream_for_sink(struct amdgpu_dm_connector *aconnector,
|
||||||
int preferred_refresh = 0;
|
int preferred_refresh = 0;
|
||||||
#if defined(CONFIG_DRM_AMD_DC_DCN)
|
#if defined(CONFIG_DRM_AMD_DC_DCN)
|
||||||
struct dsc_dec_dpcd_caps dsc_caps;
|
struct dsc_dec_dpcd_caps dsc_caps;
|
||||||
#endif
|
|
||||||
uint32_t link_bandwidth_kbps;
|
uint32_t link_bandwidth_kbps;
|
||||||
|
#endif
|
||||||
struct dc_sink *sink = NULL;
|
struct dc_sink *sink = NULL;
|
||||||
if (aconnector == NULL) {
|
if (aconnector == NULL) {
|
||||||
DRM_ERROR("aconnector is NULL!\n");
|
DRM_ERROR("aconnector is NULL!\n");
|
||||||
|
@ -5204,11 +5203,9 @@ create_stream_for_sink(struct amdgpu_dm_connector *aconnector,
|
||||||
aconnector->dc_link->dpcd_caps.dsc_caps.dsc_basic_caps.raw,
|
aconnector->dc_link->dpcd_caps.dsc_caps.dsc_basic_caps.raw,
|
||||||
aconnector->dc_link->dpcd_caps.dsc_caps.dsc_branch_decoder_caps.raw,
|
aconnector->dc_link->dpcd_caps.dsc_caps.dsc_branch_decoder_caps.raw,
|
||||||
&dsc_caps);
|
&dsc_caps);
|
||||||
#endif
|
|
||||||
link_bandwidth_kbps = dc_link_bandwidth_kbps(aconnector->dc_link,
|
link_bandwidth_kbps = dc_link_bandwidth_kbps(aconnector->dc_link,
|
||||||
dc_link_get_link_cap(aconnector->dc_link));
|
dc_link_get_link_cap(aconnector->dc_link));
|
||||||
|
|
||||||
#if defined(CONFIG_DRM_AMD_DC_DCN)
|
|
||||||
if (aconnector->dsc_settings.dsc_force_enable != DSC_CLK_FORCE_DISABLE && dsc_caps.is_dsc_supported) {
|
if (aconnector->dsc_settings.dsc_force_enable != DSC_CLK_FORCE_DISABLE && dsc_caps.is_dsc_supported) {
|
||||||
/* Set DSC policy according to dsc_clock_en */
|
/* Set DSC policy according to dsc_clock_en */
|
||||||
dc_dsc_policy_set_enable_dsc_when_not_needed(
|
dc_dsc_policy_set_enable_dsc_when_not_needed(
|
||||||
|
|
Loading…
Reference in New Issue