From: Sascha Hauer <s.hauer@pengutronix.de>
To: Barebox List <barebox@lists.infradead.org>
Subject: [PATCH v2 1/4] net: use for_each_netdev()
Date: Tue, 11 Jun 2024 07:12:34 +0200 [thread overview]
Message-ID: <20240611051237.4126918-2-s.hauer@pengutronix.de> (raw)
In-Reply-To: <20240611051237.4126918-1-s.hauer@pengutronix.de>
We have a define to iterate over all network interfaces, use it on the
remaining places which still iterate over the list manually.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
net/eth.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/net/eth.c b/net/eth.c
index 98567d8d3f..26a36474f8 100644
--- a/net/eth.c
+++ b/net/eth.c
@@ -535,7 +535,7 @@ struct eth_device *of_find_eth_device_by_node(struct device_node *np)
*/
(void)of_device_ensure_probed(np);
- list_for_each_entry(edev, &netdev_list, list)
+ for_each_netdev(edev)
if (edev->parent->of_node == np)
return edev;
return NULL;
@@ -546,7 +546,7 @@ void eth_open_all(void)
{
struct eth_device *edev;
- list_for_each_entry(edev, &netdev_list, list) {
+ for_each_netdev(edev) {
if (edev->global_mode == ETH_MODE_DISABLED)
continue;
eth_open(edev);
@@ -559,7 +559,7 @@ static int populate_ethaddr(void)
bool generated = false;
int ret;
- list_for_each_entry(edev, &netdev_list, list) {
+ for_each_netdev(edev) {
if (!edev->parent || is_valid_ether_addr(edev->ethaddr))
continue;
--
2.39.2
next prev parent reply other threads:[~2024-06-11 5:13 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-11 5:12 [PATCH v2 0/4] Introduce class devices Sascha Hauer
2024-06-11 5:12 ` Sascha Hauer [this message]
2024-06-11 5:12 ` [PATCH v2 2/4] base: add class device support Sascha Hauer
2024-06-11 5:12 ` [PATCH v2 3/4] net: register eth class Sascha Hauer
2024-06-11 5:12 ` [PATCH v2 4/4] watchdog: register watchdog class Sascha Hauer
2024-06-13 6:41 ` [PATCH v2 0/4] Introduce class devices Sascha Hauer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240611051237.4126918-2-s.hauer@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox