bcma: Use of_address_to_resource()

Replace of_get_address() and of_translate_address() calls with single
call to of_address_to_resource().

Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20230319163159.225773-1-robh@kernel.org
This commit is contained in:
Rob Herring 2023-03-19 11:31:59 -05:00 committed by Kalle Valo
parent 074d0a1ae1
commit 767d011dc3

View File

@ -140,17 +140,17 @@ static struct device_node *bcma_of_find_child_device(struct device *parent,
struct bcma_device *core)
{
struct device_node *node;
u64 size;
const __be32 *reg;
int ret;
if (!parent->of_node)
return NULL;
for_each_child_of_node(parent->of_node, node) {
reg = of_get_address(node, 0, &size, NULL);
if (!reg)
struct resource res;
ret = of_address_to_resource(node, 0, &res);
if (ret)
continue;
if (of_translate_address(node, reg) == core->addr)
if (res.start == core->addr)
return node;
}
return NULL;