Commit b7e2439c authored by Rex Zhu's avatar Rex Zhu Committed by Alex Deucher

drm/amd/display: mclk level can't be 0.

Signed-off-by: default avatarRex Zhu <Rex.Zhu@amd.com>
Acked-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Reviewed-by: default avatarHarry Wentland <harry.wentland@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent ca709397
...@@ -357,8 +357,8 @@ bool dm_pp_get_clock_levels_by_type( ...@@ -357,8 +357,8 @@ bool dm_pp_get_clock_levels_by_type(
* Than means the previous one is the highest * Than means the previous one is the highest
* non-boosted one. */ * non-boosted one. */
DRM_INFO("DM_PPLIB: reducing engine clock level from %d to %d\n", DRM_INFO("DM_PPLIB: reducing engine clock level from %d to %d\n",
dc_clks->num_levels, i + 1); dc_clks->num_levels, i);
dc_clks->num_levels = i; dc_clks->num_levels = i > 0 ? i : 1;
break; break;
} }
} }
...@@ -366,8 +366,8 @@ bool dm_pp_get_clock_levels_by_type( ...@@ -366,8 +366,8 @@ bool dm_pp_get_clock_levels_by_type(
for (i = 0; i < dc_clks->num_levels; i++) { for (i = 0; i < dc_clks->num_levels; i++) {
if (dc_clks->clocks_in_khz[i] > validation_clks.memory_max_clock) { if (dc_clks->clocks_in_khz[i] > validation_clks.memory_max_clock) {
DRM_INFO("DM_PPLIB: reducing memory clock level from %d to %d\n", DRM_INFO("DM_PPLIB: reducing memory clock level from %d to %d\n",
dc_clks->num_levels, i + 1); dc_clks->num_levels, i);
dc_clks->num_levels = i; dc_clks->num_levels = i > 0 ? i : 1;
break; break;
} }
} }
......
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