The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH][next] drm/ttm: remove redundant ternaray operation on ret
@ 2025-07-02  9:25 Colin Ian King
  2025-07-02  9:42 ` Robert P. J. Day
  0 siblings, 1 reply; 4+ messages in thread
From: Colin Ian King @ 2025-07-02  9:25 UTC (permalink / raw)
  To: Christian Koenig, Huang Rui, Matthew Auld, Matthew Brost,
	Maarten Lankhorst, Maxime Ripard, Thomas Zimmermann, David Airlie,
	Simona Vetter, dri-devel
  Cc: kernel-janitors, linux-kernel

Currently the only exit path to the end of the function
__ttm_bo_lru_cursor_next is when pointer res is NULL. The
ternary operation at the end of the function that checks on
the value of res is redundant as res can never be non-null
and hence the expression referencing pointer bo is never
executed. Clean up the code by replacing the ternary operator
with just a simple return of NULL

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/gpu/drm/ttm/ttm_bo_util.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/ttm/ttm_bo_util.c b/drivers/gpu/drm/ttm/ttm_bo_util.c
index cdee664d2e8b..fb8bef50c744 100644
--- a/drivers/gpu/drm/ttm/ttm_bo_util.c
+++ b/drivers/gpu/drm/ttm/ttm_bo_util.c
@@ -1016,7 +1016,7 @@ __ttm_bo_lru_cursor_next(struct ttm_bo_lru_cursor *curs)
 	}
 
 	spin_unlock(lru_lock);
-	return res ? bo : NULL;
+	return NULL;
 }
 
 /**
-- 
2.50.0


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

end of thread, other threads:[~2025-07-02 10:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-02  9:25 [PATCH][next] drm/ttm: remove redundant ternaray operation on ret Colin Ian King
2025-07-02  9:42 ` Robert P. J. Day
2025-07-02  9:43   ` Colin King (gmail)
2025-07-02 10:14     ` Christian König

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox