OSDN Git Service

bcma: Use of_address_to_resource()
authorRob Herring <robh@kernel.org>
Sun, 19 Mar 2023 16:31:59 +0000 (11:31 -0500)
committerKalle Valo <kvalo@kernel.org>
Fri, 31 Mar 2023 15:04:40 +0000 (18:04 +0300)
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
drivers/bcma/main.c

index 7b39f01..5e438f7 100644 (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;