提交 5f6a92e4 编写于 作者: Y Yuxian Dai 提交者: Alex Deucher

drm/amdgpu/powerplay:avoid to show invalid DPM table info

for different ASIC support different the number of DPM levels,
we should avoid to show the invalid level value.
v1 -> v2:
	follow the suggestion,clarifiy the description for this
change
Reviewed-by: NHuang Rui <ray.huang@amd.com>
Signed-off-by: NYuxian Dai <Yuxian.Dai@amd.com>
Signed-off-by: NAlex Deucher <alexander.deucher@amd.com>
上级 e1046a1f
......@@ -296,6 +296,8 @@ static int renoir_print_clk_levels(struct smu_context *smu,
for (i = 0; i < count; i++) {
GET_DPM_CUR_FREQ(clk_table, clk_type, i, value);
if (!value)
continue;
size += sprintf(buf + size, "%d: %uMhz %s\n", i, value,
cur_value == value ? "*" : "");
if (cur_value == value)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册