aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabe Teeger <[email protected]>2023-09-14 16:00:16 -0400
committerAlex Deucher <[email protected]>2023-09-26 17:00:21 -0400
commit99c1673fd14797591d11126dd093313e8aed466c (patch)
tree5b688af7c0a60c275a3f4cd827f4a921d133dabd
parent7021b397c684c624800b464dbd3a2f9d945a56a3 (diff)
drm/amd/display: Rename DisableMinDispClkODM in dc_config
[what and why] The logic for DisableMinDispClkODM is reversed now that odm is disabled by default. Renaming to EnableMinDispClkODM. Reviewed-by: Charlene Liu <[email protected]> Acked-by: Wayne Lin <[email protected]> Signed-off-by: Gabe Teeger <[email protected]> Tested-by: Daniel Wheeler <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r--drivers/gpu/drm/amd/display/dc/dc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dc.h b/drivers/gpu/drm/amd/display/dc/dc.h
index 0b571c0005e6..da7672028eb7 100644
--- a/drivers/gpu/drm/amd/display/dc/dc.h
+++ b/drivers/gpu/drm/amd/display/dc/dc.h
@@ -420,7 +420,7 @@ struct dc_config {
int sdpif_request_limit_words_per_umc;
bool use_old_fixed_vs_sequence;
bool dc_mode_clk_limit_support;
- bool DisableMinDispClkODM;
+ bool EnableMinDispClkODM;
bool enable_auto_dpm_test_logs;
};