All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next] net/rose: Remove unnecessary if check in rose_dev_first()
@ 2025-07-04  8:33 Thorsten Blum
  2025-07-07 16:05 ` Simon Horman
  2025-07-14 18:03 ` Dan Carpenter
  0 siblings, 2 replies; 3+ messages in thread
From: Thorsten Blum @ 2025-07-04  8:33 UTC (permalink / raw)
  To: David S. Miller, Eric Dumazet, Jakub Kicinski, Paolo Abeni,
	Simon Horman, Thorsten Blum, Ingo Molnar, Kohei Enju,
	Thomas Gleixner
  Cc: linux-hams, netdev, linux-kernel

dev_hold() already checks if its argument is NULL.

Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
 net/rose/rose_route.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/net/rose/rose_route.c b/net/rose/rose_route.c
index b72bf8a08d48..35e21a2bec9c 100644
--- a/net/rose/rose_route.c
+++ b/net/rose/rose_route.c
@@ -608,8 +608,7 @@ struct net_device *rose_dev_first(void)
 			if (first == NULL || strncmp(dev->name, first->name, 3) < 0)
 				first = dev;
 	}
-	if (first)
-		dev_hold(first);
+	dev_hold(first);
 	rcu_read_unlock();
 
 	return first;
-- 
2.50.0


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

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

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-04  8:33 [PATCH net-next] net/rose: Remove unnecessary if check in rose_dev_first() Thorsten Blum
2025-07-07 16:05 ` Simon Horman
2025-07-14 18:03 ` Dan Carpenter

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.