summaryrefslogtreecommitdiffstats
path: root/drivers/cpufreq/scmi-cpufreq.c
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2023-03-10 08:47:02 -0600
committerViresh Kumar <viresh.kumar@linaro.org>2023-03-13 09:58:11 +0530
commitb8f3a396a7ee43e6079176cc0fb8de2b95a23681 (patch)
tree1de7073712435bbb6ee7aa5db6ab1fbc06960214 /drivers/cpufreq/scmi-cpufreq.c
parent35527c677cb6bbaa6489b8560c8b4316fdd60792 (diff)
downloadlinux-stable-b8f3a396a7ee43e6079176cc0fb8de2b95a23681.tar.gz
linux-stable-b8f3a396a7ee43e6079176cc0fb8de2b95a23681.tar.bz2
linux-stable-b8f3a396a7ee43e6079176cc0fb8de2b95a23681.zip
cpufreq: 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>
Diffstat (limited to 'drivers/cpufreq/scmi-cpufreq.c')
-rw-r--r--drivers/cpufreq/scmi-cpufreq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/scmi-cpufreq.c b/drivers/cpufreq/scmi-cpufreq.c
index 513a071845c2..f34e6382a4c5 100644
--- a/drivers/cpufreq/scmi-cpufreq.c
+++ b/drivers/cpufreq/scmi-cpufreq.c
@@ -310,7 +310,7 @@ static int scmi_cpufreq_probe(struct scmi_device *sdev)
#ifdef CONFIG_COMMON_CLK
/* dummy clock provider as needed by OPP if clocks property is used */
- if (of_find_property(dev->of_node, "#clock-cells", NULL))
+ if (of_property_present(dev->of_node, "#clock-cells"))
devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get, NULL);
#endif