[PATCH] drm/amd/powerplay: fix semicolon.cocci warnings

From: kbuild test robot
Date: Sun Aug 06 2017 - 04:00:59 EST


drivers/gpu/drm/amd/amdgpu/../powerplay/hwmgr/vega10_hwmgr.c:2273:61-62: Unneeded semicolon


Remove unneeded semicolon.

Generated by: scripts/coccinelle/misc/semicolon.cocci

Fixes: bdb8cd10b99d ("drm/amd/powerplay: enable ACG feature on vega10.")
CC: Rex Zhu <Rex.Zhu@xxxxxxx>
Signed-off-by: Fengguang Wu <fengguang.wu@xxxxxxxxx>
---

vega10_hwmgr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/gpu/drm/amd/amdgpu/../powerplay/hwmgr/vega10_hwmgr.c
+++ b/drivers/gpu/drm/amd/amdgpu/../powerplay/hwmgr/vega10_hwmgr.c
@@ -2270,7 +2270,7 @@ static int vega10_acg_enable(struct pp_h
smum_send_msg_to_smc(hwmgr->smumgr, PPSMC_MSG_InitializeAcg);

smum_send_msg_to_smc(hwmgr->smumgr, PPSMC_MSG_RunAcgBtc);
- vega10_read_arg_from_smc(hwmgr->smumgr, &agc_btc_response);;
+ vega10_read_arg_from_smc(hwmgr->smumgr, &agc_btc_response);

if (1 == agc_btc_response) {
if (1 == data->acg_loop_state)