drm/amd/pm: make namings and comments more readable

And to fit more accurately what the cod does.

Signed-off-by: Evan Quan <evan.quan@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
Evan Quan 2020-08-26 18:37:00 +08:00 committed by Alex Deucher
parent eb5f69e766
commit 12f04120d3

View file

@ -2185,7 +2185,7 @@ static int navi10_run_btc(struct smu_context *smu)
return ret;
}
static bool navi10_need_umc_cdr_12gbps_workaround(struct smu_context *smu)
static bool navi10_need_umc_cdr_workaround(struct smu_context *smu)
{
struct amdgpu_device *adev = smu->adev;
@ -2276,7 +2276,7 @@ static int navi10_set_dummy_pstates_table_location(struct smu_context *smu)
NULL);
}
static int navi10_disable_umc_cdr_12gbps_workaround(struct smu_context *smu)
static int navi10_run_umc_cdr_workaround(struct smu_context *smu)
{
struct amdgpu_device *adev = smu->adev;
uint8_t umc_fw_greater_than_v136 = false;
@ -2285,7 +2285,7 @@ static int navi10_disable_umc_cdr_12gbps_workaround(struct smu_context *smu)
uint32_t param;
int ret = 0;
if (!navi10_need_umc_cdr_12gbps_workaround(smu))
if (!navi10_need_umc_cdr_workaround(smu))
return 0;
ret = smu_cmn_get_smc_version(smu, NULL, &pmfw_version);
@ -2676,7 +2676,7 @@ static int navi10_post_smu_init(struct smu_context *smu)
return ret;
}
ret = navi10_disable_umc_cdr_12gbps_workaround(smu);
ret = navi10_run_umc_cdr_workaround(smu);
if (ret)
dev_err(adev->dev, "Failed to apply umc cdr workaround!\n");