memory: atmel-ebi: Use of_property_present() for testing DT property presence
authorRob Herring <robh@kernel.org>
Fri, 10 Mar 2023 14:47:11 +0000 (08:47 -0600)
committerKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Mon, 13 Mar 2023 06:53:45 +0000 (07:53 +0100)
It is preferred to use typed property access functions (i.e.
of_property_read_<type> functions) rather than low-level
of_get_property/of_find_property functions for reading properties. As
part of this, convert of_get_property/of_find_property calls to the
recently added of_property_present() helper when we just want to test
for presence of a property and nothing more.

Signed-off-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20230310144711.1543295-1-robh@kernel.org
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
drivers/memory/atmel-ebi.c

index e749dcb3ddea93335a6ca5f5dd6e1de0e9a52418..635966d705cbb24502da0092af8ea39a90978830 100644 (file)
@@ -598,7 +598,7 @@ static int atmel_ebi_probe(struct platform_device *pdev)
        reg_cells += val;
 
        for_each_available_child_of_node(np, child) {
-               if (!of_find_property(child, "reg", NULL))
+               if (!of_property_present(child, "reg"))
                        continue;
 
                ret = atmel_ebi_dev_setup(ebi, child, reg_cells);