All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH linux-next] drm/amd/display: Remove the unneeded result variable
@ 2022-09-02  7:54 ` cgel.zte
  0 siblings, 0 replies; 6+ messages in thread
From: cgel.zte @ 2022-09-02  7:54 UTC (permalink / raw)
  To: harry.wentland
  Cc: sunpeng.li, Rodrigo.Siqueira, alexander.deucher,
	christian.koenig, Xinhui.Pan, airlied, daniel, wenjing.liu,
	Jun.Lei, Jimmy.Kizito, Jerry.Zuo, meenakshikumar.somasundaram,
	hanghong.ma, amd-gfx, dri-devel, linux-kernel, zhang songyi,
	Zeal Robot

From: zhang songyi <zhang.songyi@zte.com.cn>

Return the enable_link_dp() directly instead of storing it in another
redundant variable.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: zhang songyi <zhang.songyi@zte.com.cn>
---
 drivers/gpu/drm/amd/display/dc/core/dc_link.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_link.c b/drivers/gpu/drm/amd/display/dc/core/dc_link.c
index f9b798b7933c..4ab27e231337 100644
--- a/drivers/gpu/drm/amd/display/dc/core/dc_link.c
+++ b/drivers/gpu/drm/amd/display/dc/core/dc_link.c
@@ -2077,11 +2077,7 @@ static enum dc_status enable_link_edp(
 		struct dc_state *state,
 		struct pipe_ctx *pipe_ctx)
 {
-	enum dc_status status;
-
-	status = enable_link_dp(state, pipe_ctx);
-
-	return status;
+	return enable_link_dp(state, pipe_ctx);
 }
 
 static enum dc_status enable_link_dp_mst(
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

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

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-02  7:54 [PATCH linux-next] drm/amd/display: Remove the unneeded result variable cgel.zte
2022-09-02  7:54 ` cgel.zte
2022-09-02  7:54 ` cgel.zte
2022-09-06 15:44 ` Rodrigo Siqueira Jordao
2022-09-06 15:44   ` Rodrigo Siqueira Jordao
2022-09-06 15:44   ` Rodrigo Siqueira Jordao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.