sbus: display7seg: Use of_property_read_bool() for boolean properties
authorRob Herring <robh@kernel.org>
Fri, 10 Mar 2023 14:47:22 +0000 (08:47 -0600)
committerRob Herring <robh@kernel.org>
Fri, 21 Apr 2023 14:20:43 +0000 (09:20 -0500)
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.
Convert reading boolean properties to to of_property_read_bool().

Link: https://lore.kernel.org/r/20230310144723.1544930-1-robh@kernel.org
Signed-off-by: Rob Herring <robh@kernel.org>
drivers/sbus/char/display7seg.c

index d93595b..5368b6b 100644 (file)
@@ -200,9 +200,8 @@ static int d7s_probe(struct platform_device *op)
         */
        regs = readb(p->regs);
        opts = of_find_node_by_path("/options");
-       if (opts &&
-           of_get_property(opts, "d7s-flipped?", NULL))
-               p->flipped = true;
+       if (opts)
+           p->flipped = of_property_read_bool(opts, "d7s-flipped?");
 
        if (p->flipped)
                regs |= D7S_FLIP;