dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drm/amdgpu: remove unneeded variable
@ 2021-11-10  5:53 cgel.zte
  2021-11-10 16:38 ` Alex Deucher
  0 siblings, 1 reply; 4+ messages in thread
From: cgel.zte @ 2021-11-10  5:53 UTC (permalink / raw)
  To: evan.quan
  Cc: lijo.lazar, Jack.Gui, airlied, Zeal Robot, Xinhui.Pan,
	linux-kernel, amd-gfx, luben.tuikov, dri-devel,
	alexander.deucher, ran jianping, kenneth.feng, christian.koenig

From: ran jianping <ran.jianping@zte.com.cn>

Fix the following coccicheck review:
./drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c:1174:14-18
:Unneeded variable

Remove unneeded variable used to store return value.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: ran jianping <ran.jianping@zte.com.cn>
---
 drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c b/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
index a4108025fe29..b0bb389185d5 100644
--- a/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
+++ b/drivers/gpu/drm/amd/pm/swsmu/smu11/sienna_cichlid_ppt.c
@@ -1171,7 +1171,7 @@ static int sienna_cichlid_force_clk_levels(struct smu_context *smu,
 				   enum smu_clk_type clk_type, uint32_t mask)
 {
 	struct amdgpu_device *adev = smu->adev;
-	int ret = 0, size = 0;
+	int ret = 0;
 	uint32_t soft_min_level = 0, soft_max_level = 0, min_freq = 0, max_freq = 0;
 
 	soft_min_level = mask ? (ffs(mask) - 1) : 0;
@@ -1216,7 +1216,7 @@ static int sienna_cichlid_force_clk_levels(struct smu_context *smu,
 	if ((clk_type == SMU_GFXCLK) || (clk_type == SMU_SCLK))
 		amdgpu_gfx_off_ctrl(adev, true);
 
-	return size;
+	return 0;
 }
 
 static int sienna_cichlid_populate_umd_state_clk(struct smu_context *smu)
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread
[parent not found: <20230614022440.33828-1-luojianhong@cdjrlc.com>]

end of thread, other threads:[~2023-06-15 17:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-10  5:53 [PATCH] drm/amdgpu: remove unneeded variable cgel.zte
2021-11-10 16:38 ` Alex Deucher
     [not found] <20230614022440.33828-1-luojianhong@cdjrlc.com>
2023-06-14  2:26 ` baomingtong001
2023-06-15 17:16   ` Alex Deucher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).