Browse Source

drm/amd/pp: Fix incorrect return value in smu7_check_clk_voltage_valid

Reviewed-by: Evan Quan <evan.quan@amd.com>
Signed-off-by: Rex Zhu <Rex.Zhu@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Rex Zhu 7 years ago
parent
commit
16a6620c32
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c

+ 1 - 1
drivers/gpu/drm/amd/powerplay/hwmgr/smu7_hwmgr.c

@@ -4770,7 +4770,7 @@ static bool smu7_check_clk_voltage_valid(struct pp_hwmgr *hwmgr,
 	struct phm_ppt_v1_clock_voltage_dependency_table *dep_sclk_table;
 	struct phm_ppt_v1_clock_voltage_dependency_table *dep_sclk_table;
 
 
 	if (table_info == NULL)
 	if (table_info == NULL)
-		return -EINVAL;
+		return false;
 
 
 	dep_sclk_table = table_info->vdd_dep_on_sclk;
 	dep_sclk_table = table_info->vdd_dep_on_sclk;
 	min_vddc = dep_sclk_table->entries[0].vddc;
 	min_vddc = dep_sclk_table->entries[0].vddc;