Skip to content

Commit 10ce6b7

Browse files
committed
virt: fsl: Use of_property_present() for testing DT property presence
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. Link: https://lore.kernel.org/r/20230310144731.1546259-1-robh@kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
1 parent 83f3249 commit 10ce6b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/virt/fsl_hypervisor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ static int has_fsl_hypervisor(void)
796796
if (!node)
797797
return 0;
798798

799-
ret = of_find_property(node, "fsl,hv-version", NULL) != NULL;
799+
ret = of_property_present(node, "fsl,hv-version");
800800

801801
of_node_put(node);
802802

0 commit comments

Comments
 (0)