]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
net: mvpp2: use device_for_each_child_node() to access device child nodes
authorJavier Carrasco <javier.carrasco.cruz@gmail.com>
Thu, 8 Aug 2024 09:47:33 +0000 (11:47 +0200)
committerDavid S. Miller <davem@davemloft.net>
Sun, 11 Aug 2024 16:00:33 +0000 (17:00 +0100)
commita7b32744475cb774b4fce599f58394f4ef0acb68
tree28e4450aa1e2a65fd89f45797d28c3f332012275
parente81d00a6b3b7d619060223d0754ca02e7d4ba90f
net: mvpp2: use device_for_each_child_node() to access device child nodes

The iterated nodes are direct children of the device node, and the
`device_for_each_child_node()` macro accounts for child node
availability.

`fwnode_for_each_available_child_node()` is meant to access the child
nodes of an fwnode, and therefore not direct child nodes of the device
node.

The child nodes within mvpp2_probe are not accessed outside the loops,
and the scoped version of the macro can be used to automatically
decrement the refcount on early exits.

Use `device_for_each_child_node()` and its scoped variant to indicate
device's direct child nodes.

Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/marvell/mvpp2/mvpp2_main.c