Commit 2a782140 authored by Yang Wei's avatar Yang Wei Committed by Alex Deucher

drm/amd/powerplay: fix semicolon code style issue

Delete superfluous semicolons.
Signed-off-by: default avatarYang Wei <yang.wei9@zte.com.cn>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent dff234d2
...@@ -1304,7 +1304,7 @@ static int pp_notify_smu_enable_pwe(void *handle) ...@@ -1304,7 +1304,7 @@ static int pp_notify_smu_enable_pwe(void *handle)
if (hwmgr->hwmgr_func->smus_notify_pwe == NULL) { if (hwmgr->hwmgr_func->smus_notify_pwe == NULL) {
pr_info_ratelimited("%s was not implemented.\n", __func__); pr_info_ratelimited("%s was not implemented.\n", __func__);
return -EINVAL;; return -EINVAL;
} }
mutex_lock(&hwmgr->smu_lock); mutex_lock(&hwmgr->smu_lock);
...@@ -1341,7 +1341,7 @@ static int pp_set_min_deep_sleep_dcefclk(void *handle, uint32_t clock) ...@@ -1341,7 +1341,7 @@ static int pp_set_min_deep_sleep_dcefclk(void *handle, uint32_t clock)
if (hwmgr->hwmgr_func->set_min_deep_sleep_dcefclk == NULL) { if (hwmgr->hwmgr_func->set_min_deep_sleep_dcefclk == NULL) {
pr_debug("%s was not implemented.\n", __func__); pr_debug("%s was not implemented.\n", __func__);
return -EINVAL;; return -EINVAL;
} }
mutex_lock(&hwmgr->smu_lock); mutex_lock(&hwmgr->smu_lock);
...@@ -1360,7 +1360,7 @@ static int pp_set_hard_min_dcefclk_by_freq(void *handle, uint32_t clock) ...@@ -1360,7 +1360,7 @@ static int pp_set_hard_min_dcefclk_by_freq(void *handle, uint32_t clock)
if (hwmgr->hwmgr_func->set_hard_min_dcefclk_by_freq == NULL) { if (hwmgr->hwmgr_func->set_hard_min_dcefclk_by_freq == NULL) {
pr_debug("%s was not implemented.\n", __func__); pr_debug("%s was not implemented.\n", __func__);
return -EINVAL;; return -EINVAL;
} }
mutex_lock(&hwmgr->smu_lock); mutex_lock(&hwmgr->smu_lock);
...@@ -1379,7 +1379,7 @@ static int pp_set_hard_min_fclk_by_freq(void *handle, uint32_t clock) ...@@ -1379,7 +1379,7 @@ static int pp_set_hard_min_fclk_by_freq(void *handle, uint32_t clock)
if (hwmgr->hwmgr_func->set_hard_min_fclk_by_freq == NULL) { if (hwmgr->hwmgr_func->set_hard_min_fclk_by_freq == NULL) {
pr_debug("%s was not implemented.\n", __func__); pr_debug("%s was not implemented.\n", __func__);
return -EINVAL;; return -EINVAL;
} }
mutex_lock(&hwmgr->smu_lock); mutex_lock(&hwmgr->smu_lock);
......
...@@ -76,7 +76,7 @@ int phm_set_power_state(struct pp_hwmgr *hwmgr, ...@@ -76,7 +76,7 @@ int phm_set_power_state(struct pp_hwmgr *hwmgr,
int phm_enable_dynamic_state_management(struct pp_hwmgr *hwmgr) int phm_enable_dynamic_state_management(struct pp_hwmgr *hwmgr)
{ {
struct amdgpu_device *adev = NULL; struct amdgpu_device *adev = NULL;
int ret = -EINVAL;; int ret = -EINVAL;
PHM_FUNC_CHECK(hwmgr); PHM_FUNC_CHECK(hwmgr);
adev = hwmgr->adev; adev = hwmgr->adev;
......
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