opp: Use of_property_present() for testing DT property presence
authorRob Herring <robh@kernel.org>
Fri, 10 Mar 2023 14:47:18 +0000 (08:47 -0600)
committerViresh Kumar <viresh.kumar@linaro.org>
Mon, 13 Mar 2023 04:29:41 +0000 (09:59 +0530)
commite9eadc28271940266ace3f748a1c6278bd886ea8
tree7692f2d725f2fa15a3b2f60fee63d70d4e400f7e
parentfe15c26ee26efa11741a7b632e9f23b01aca4cc6
opp: 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.

Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
drivers/opp/of.c