mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-23 08:35:19 -05:00
soc: qcom: apr: simplify with scoped for each OF child loop
Use scoped for_each_child_of_node_scoped() when iterating over device nodes to make code a bit simpler. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Link: https://lore.kernel.org/r/20240813-b4-cleanup-h-of-node-put-other-v1-1-cfb67323a95c@linaro.org Signed-off-by: Bjorn Andersson <andersson@kernel.org>
This commit is contained in:
parent
b14c150d19
commit
6c26d9c764
1 changed files with 1 additions and 4 deletions
|
@ -485,11 +485,10 @@ static int of_apr_add_pd_lookups(struct device *dev)
|
|||
{
|
||||
const char *service_name, *service_path;
|
||||
struct packet_router *apr = dev_get_drvdata(dev);
|
||||
struct device_node *node;
|
||||
struct pdr_service *pds;
|
||||
int ret;
|
||||
|
||||
for_each_child_of_node(dev->of_node, node) {
|
||||
for_each_child_of_node_scoped(dev->of_node, node) {
|
||||
ret = of_property_read_string_index(node, "qcom,protection-domain",
|
||||
0, &service_name);
|
||||
if (ret < 0)
|
||||
|
@ -499,14 +498,12 @@ static int of_apr_add_pd_lookups(struct device *dev)
|
|||
1, &service_path);
|
||||
if (ret < 0) {
|
||||
dev_err(dev, "pdr service path missing: %d\n", ret);
|
||||
of_node_put(node);
|
||||
return ret;
|
||||
}
|
||||
|
||||
pds = pdr_add_lookup(apr->pdr, service_name, service_path);
|
||||
if (IS_ERR(pds) && PTR_ERR(pds) != -EALREADY) {
|
||||
dev_err(dev, "pdr add lookup failed: %ld\n", PTR_ERR(pds));
|
||||
of_node_put(node);
|
||||
return PTR_ERR(pds);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue